mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-02 17:23:40 -05:00
handling array as a table data and headerFilter.plugin (#12926)
This commit is contained in:
@@ -94,6 +94,9 @@ export function slickGridDataItemColumnValueWithNoData(value: any, columnDef: an
|
||||
if (typeof displayValue === 'number') {
|
||||
displayValue = displayValue.toString();
|
||||
}
|
||||
if (displayValue instanceof Array) {
|
||||
displayValue = displayValue.toString();
|
||||
}
|
||||
return {
|
||||
text: displayValue,
|
||||
ariaLabel: displayValue ? escape(displayValue) : ((displayValue !== undefined) ? localize("tableCell.NoDataAvailable", "no data available") : displayValue)
|
||||
|
||||
Reference in New Issue
Block a user