From d1adcae914052309f230fe5d993ee6013f775b76 Mon Sep 17 00:00:00 2001 From: allen-li1231 Date: Fri, 29 Nov 2024 21:25:17 +0800 Subject: [PATCH] lint --- src/common/interaction.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/interaction.ts b/src/common/interaction.ts index 4f1ebb1..d3c5714 100644 --- a/src/common/interaction.ts +++ b/src/common/interaction.ts @@ -363,8 +363,8 @@ export async function promptCreateNotebook( const quickPick = vscode.window.createQuickPick(); // remove suffix quickPick.value = name; - quickPick.title = `Specify Path to Save a - New Notebook "${name}" to Zeppelin Server`; + quickPick.title = `Specify path to save + new notebook "${name}" to Zeppelin server`; quickPick.ignoreFocusOut = true; quickPick.items = visiblePaths.map(value => { return { label: value }; });