Skip to content

Commit

Permalink
Remove the add cell button from the tabbable item. It is now reachabl…
Browse files Browse the repository at this point in the history
…e only with key arrows when the notebook is focused (jupyterlab#15679)
  • Loading branch information
brichet authored Jan 23, 2024
1 parent ef874a1 commit ae54125
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/notebook/src/notebookfooter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export class NotebookFooter extends Widget {
super({ node: document.createElement('button') });
const trans = notebook.translator.load('jupyterlab');
this.addClass(NOTEBOOK_FOOTER_CLASS);
this.node.setAttribute('tabindex', '-1');
this.node.innerText = trans.__('Click to add a cell.');
}

Expand Down

0 comments on commit ae54125

Please sign in to comment.