Fix #186303. Remove tab index for nb toolbar. (#186513)

This commit is contained in:
Peng Lyu 2023-06-28 08:12:44 -07:00 committed by GitHub
parent 7139abe4d5
commit 96b02d44be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -560,7 +560,6 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
private _createBody(parent: HTMLElement): void {
this._notebookTopToolbarContainer = document.createElement('div');
this._notebookTopToolbarContainer.classList.add('notebook-toolbar-container');
this._notebookTopToolbarContainer.tabIndex = 0;
this._notebookTopToolbarContainer.style.display = 'none';
DOM.append(parent, this._notebookTopToolbarContainer);
this._body = document.createElement('div');