From 130274fc34869de92b6d1ae476d19c9827897d94 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 9 Apr 2024 16:19:24 +0200 Subject: [PATCH] Do not notify the `notebook:create-output-view` command (#16138) --- packages/notebook-extension/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/notebook-extension/src/index.ts b/packages/notebook-extension/src/index.ts index f788efc210d4..b64f4ab2528c 100644 --- a/packages/notebook-extension/src/index.ts +++ b/packages/notebook-extension/src/index.ts @@ -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))