mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 17:23:29 -05:00
fix race condition in declarative table (#15801)
This commit is contained in:
@@ -350,6 +350,7 @@ class TestDeclarativeTableComponent extends TestComponentBase implements azdata.
|
||||
setFilter: undefined;
|
||||
data: any[][];
|
||||
columns: azdata.DeclarativeTableColumn[];
|
||||
setDataValues: undefined;
|
||||
}
|
||||
|
||||
class TestButtonComponent extends TestComponentBase implements azdata.ButtonComponent {
|
||||
|
||||
@@ -186,7 +186,8 @@ describe('Manage Package Dialog', () => {
|
||||
onRowSelected: undefined!,
|
||||
setFilter: undefined!,
|
||||
data: [],
|
||||
columns: []
|
||||
columns: [],
|
||||
setDataValues: undefined!
|
||||
});
|
||||
|
||||
let loadingComponent: () => azdata.LoadingComponent = () => Object.assign({}, componentBase, {
|
||||
|
||||
Reference in New Issue
Block a user