From 7c8e4d5f29b007209c7fa21a9fbac9c5a1c4d02b Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Wed, 13 May 2020 11:40:31 +0200 Subject: [PATCH] Fix #97240 --- src/vs/workbench/contrib/markers/browser/markersViewActions.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vs/workbench/contrib/markers/browser/markersViewActions.ts b/src/vs/workbench/contrib/markers/browser/markersViewActions.ts index 430cecfcc62..1d0dd365081 100644 --- a/src/vs/workbench/contrib/markers/browser/markersViewActions.ts +++ b/src/vs/workbench/contrib/markers/browser/markersViewActions.ts @@ -323,7 +323,6 @@ export class MarkersFilterActionViewItem extends BaseActionViewItem { ariaLabel: Messages.MARKERS_PANEL_FILTER_ARIA_LABEL, history: this.filterController.filters.filterHistory })); - this.filterInputBox.inputElement.setAttribute('aria-labelledby', 'markers-panel-arialabel'); this._register(attachInputBoxStyler(this.filterInputBox, this.themeService)); this.filterInputBox.value = this.filterController.filters.filterText; this._register(this.filterInputBox.onDidChange(filter => this.delayedFilterUpdate.trigger(() => this.onDidInputChange(this.filterInputBox!)))); -- GitLab