Skip to content

Commit

Permalink
Merge pull request #7647 from lresende/select-notebook-kernel-dialog
Browse files Browse the repository at this point in the history
Simplify user experience when selecting 'no kernel' for notebook
  • Loading branch information
Steven Silvester committed Dec 18, 2019
2 parents 13519d1 + 9e34312 commit 6461d0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/apputils/src/clientsession.tsx
Expand Up @@ -606,7 +606,10 @@ export class ClientSession implements IClientSession {
}
const buttons = cancelable
? [Dialog.cancelButton(), Dialog.okButton({ label: 'Select' })]
: [Dialog.okButton({ label: 'Select' })];
: [
Dialog.cancelButton({ label: 'No Kernel' }),
Dialog.okButton({ label: 'Select' })
];

let dialog = (this._dialog = new Dialog({
title: 'Select Kernel',
Expand Down

0 comments on commit 6461d0b

Please sign in to comment.