mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
fix search box issue (#15097)
* fix search box issue * fix compilation error
This commit is contained in:
@@ -586,7 +586,7 @@ export class AsmtResultsViewComponent extends TabChild implements IAssessmentCom
|
||||
return seen.sort((v) => { return v; });
|
||||
}
|
||||
|
||||
private getFilterValuesByInput($input: JQuery<HTMLElement>): Array<string> {
|
||||
private async getFilterValuesByInput($input: JQuery<HTMLElement>): Promise<Array<string>> {
|
||||
const column = $input.data('column'),
|
||||
filter = $input.val() as string,
|
||||
dataView = this['grid'].getData() as Slick.DataProvider<Slick.SlickData>,
|
||||
|
||||
Reference in New Issue
Block a user