mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 01:25:38 -05:00
SQL Migration extension - accessibility bug - fixes filter enter and focus (#15953)
* fix filter enter and focus * debounce and fix search * refactor null check and undo change/remove await * using control types to improve and remove 'any'
This commit is contained in:
@@ -33,7 +33,7 @@ export class MigrationStatusDialog {
|
||||
|
||||
initialize() {
|
||||
let tab = azdata.window.createTab('');
|
||||
tab.registerContent((view: azdata.ModelView) => {
|
||||
tab.registerContent(async (view: azdata.ModelView) => {
|
||||
this._view = view;
|
||||
|
||||
this._statusDropdown = this._view.modelBuilder.dropDown().withProps({
|
||||
@@ -85,6 +85,7 @@ export class MigrationStatusDialog {
|
||||
|
||||
private createSearchAndRefreshContainer(): azdata.FlexContainer {
|
||||
this._searchBox = this._view.modelBuilder.inputBox().withProps({
|
||||
stopEnterPropagation: true,
|
||||
placeHolder: loc.SEARCH_FOR_MIGRATIONS,
|
||||
width: '360px'
|
||||
}).component();
|
||||
|
||||
Reference in New Issue
Block a user