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;