From 9f5342d1e418d8e5d72055e6e6050bdc3ede06f5 Mon Sep 17 00:00:00 2001 From: Baobhan Sith <80159437+Heavrnl@users.noreply.github.com> Date: Wed, 4 Jun 2025 10:39:55 +0800 Subject: [PATCH] Update QuickCommandsView.vue --- packages/frontend/src/views/QuickCommandsView.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/frontend/src/views/QuickCommandsView.vue b/packages/frontend/src/views/QuickCommandsView.vue index 9975c8d..635a2a3 100644 --- a/packages/frontend/src/views/QuickCommandsView.vue +++ b/packages/frontend/src/views/QuickCommandsView.vue @@ -575,11 +575,7 @@ const executeCommand = (cmd: QuickCommandFE) => { } }); - if (undefinedVariables.length > 0) { - uiNotificationsStore.showWarning( - t('quickCommands.form.warningUndefinedVariables', { variables: undefinedVariables.join(', ') }) - ); - } + // 4. 获取当前激活的 SSH 会话 ID const activeSessionId = sessionStore.activeSessionId;