mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35:36 -05:00
Merge from vscode e3c4990c67c40213af168300d1cfeb71d680f877 (#16569)
This commit is contained in:
@@ -95,7 +95,7 @@ export class ResourceViewerTable extends Disposable {
|
||||
}
|
||||
|
||||
public set columns(columns: Slick.Column<Slick.SlickData>[]) {
|
||||
this._resourceViewerTable.columns = columns;
|
||||
this._resourceViewerTable.columns = columns as any; // Cast to any to fix strict type assertion error
|
||||
this._resourceViewerTable.autosizeColumns();
|
||||
}
|
||||
|
||||
@@ -128,7 +128,7 @@ export class ResourceViewerTable extends Disposable {
|
||||
const columns = this._resourceViewerTable.grid.getColumns();
|
||||
let value = true;
|
||||
for (let i = 0; i < columns.length; i++) {
|
||||
const col: FilterableColumn<Slick.SlickData> = columns[i];
|
||||
const col: FilterableColumn<Slick.SlickData> = columns[i] as any; // Cast to any to fix strict type assertion error
|
||||
if (!col.field) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user