Skip to content

Commit

Permalink
Do not notify the notebook:create-output-view command (#16138)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Apr 9, 2024
1 parent 6152e3a commit 130274f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/notebook-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3564,7 +3564,7 @@ function addCommands(

// All commands with isEnabled defined directly or in a semantic commands
// To simplify here we added all commands as most of them have isEnabled
const skip = [CommandIDs.createNew];
const skip = [CommandIDs.createNew, CommandIDs.createOutputView];
const notify = () => {
Object.values(CommandIDs)
.filter(id => !skip.includes(id))
Expand Down

0 comments on commit 130274f

Please sign in to comment.