From 74eb687ea8280d0fc90135e803793944a74fa1b7 Mon Sep 17 00:00:00 2001 From: Michael Lively Date: Wed, 27 Sep 2023 09:22:37 -0700 Subject: [PATCH] nb codeaction setting description re-ordering (#194183) setting description fix #194106 --- .../workbench/contrib/notebook/browser/notebook.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts b/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts index 056b13a3854..9730f733561 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts @@ -971,7 +971,7 @@ configurationRegistry.registerConfiguration({ enum: ['explicit', 'never'], // enum: ['explicit', 'always', 'never'], -- autosave support needs to be built first // nls.localize('always', 'Always triggers Code Actions on save, including autosave, focus, and window change events.'), - enumDescriptions: [nls.localize('never', 'Never triggers Code Actions on save.'), nls.localize('explicit', 'Triggers Code Actions only when explicitly saved.')], + enumDescriptions: [nls.localize('explicit', 'Triggers Code Actions only when explicitly saved.', nls.localize('never', 'Never triggers Code Actions on save.'))], }, default: {} },