diff --git a/ui/src/components/workflow/DeployToLocal.tsx b/ui/src/components/workflow/DeployToLocal.tsx
index ef9bfc77..d0fe0605 100644
--- a/ui/src/components/workflow/DeployToLocal.tsx
+++ b/ui/src/components/workflow/DeployToLocal.tsx
@@ -324,7 +324,7 @@ Remove-Item -Path "$pfxPath" -Force
密钥路径
-
+
@@ -339,7 +339,7 @@ Remove-Item -Path "$pfxPath" -Force
PFX 密码
-
+
@@ -356,7 +356,7 @@ Remove-Item -Path "$pfxPath" -Force
JKS 别名
-
+
@@ -370,7 +370,7 @@ Remove-Item -Path "$pfxPath" -Force
JKS Keypass
-
+
@@ -384,7 +384,7 @@ Remove-Item -Path "$pfxPath" -Force
JKS Storepass
-
+
@@ -423,7 +423,7 @@ Remove-Item -Path "$pfxPath" -Force
{t("domain.deployment.form.shell_pre_command.label")}
-
+
@@ -455,7 +455,7 @@ Remove-Item -Path "$pfxPath" -Force
-
+
diff --git a/ui/src/components/workflow/DeployToSSH.tsx b/ui/src/components/workflow/DeployToSSH.tsx
index 968395cb..bab13cde 100644
--- a/ui/src/components/workflow/DeployToSSH.tsx
+++ b/ui/src/components/workflow/DeployToSSH.tsx
@@ -242,7 +242,7 @@ const DeployToSSH = ({ data }: DeployFormProps) => {
密钥路径
-
+
@@ -257,7 +257,7 @@ const DeployToSSH = ({ data }: DeployFormProps) => {
PFX 密码
-
+
@@ -274,7 +274,7 @@ const DeployToSSH = ({ data }: DeployFormProps) => {
JKS 别名
-
+
@@ -288,7 +288,7 @@ const DeployToSSH = ({ data }: DeployFormProps) => {
JKS Keypass
-
+
@@ -302,7 +302,7 @@ const DeployToSSH = ({ data }: DeployFormProps) => {
JKS Storepass
-
+
@@ -318,7 +318,7 @@ const DeployToSSH = ({ data }: DeployFormProps) => {
{t("domain.deployment.form.shell_pre_command.label")}
-
+
@@ -332,7 +332,7 @@ const DeployToSSH = ({ data }: DeployFormProps) => {
{t("domain.deployment.form.shell_command.label")}
-
+
diff --git a/ui/src/domain/workflow.ts b/ui/src/domain/workflow.ts
index 9c3a1650..7ba29a82 100644
--- a/ui/src/domain/workflow.ts
+++ b/ui/src/domain/workflow.ts
@@ -2,7 +2,7 @@ import { produce } from "immer";
import { nanoid } from "nanoid";
import i18n from "@/i18n";
-import { deployTargets, KVType } from "./domain";
+import { deployTargets } from "./domain";
export type WorkflowRunLog = {
id: string;
@@ -108,7 +108,7 @@ export const workflowNodeTypeDefaultOutput: Map;
+export type WorkflowNodeConfig = Record;
export type WorkflowNode = {
id: string;
diff --git a/ui/src/pages/accesses/AccessList.tsx b/ui/src/pages/accesses/AccessList.tsx
index ac09f52b..7ae64ea4 100644
--- a/ui/src/pages/accesses/AccessList.tsx
+++ b/ui/src/pages/accesses/AccessList.tsx
@@ -18,7 +18,7 @@ const AccessList = () => {
const [modalApi, ModelContextHolder] = Modal.useModal();
const [notificationApi, NotificationContextHolder] = notification.useNotification();
- const { accesses, fetchAccesses, deleteAccess } = useAccessStore();
+ const { initialized, accesses, fetchAccesses, deleteAccess } = useAccessStore();
const tableColumns: TableProps["columns"] = [
{
@@ -181,7 +181,7 @@ const AccessList = () => {
columns={tableColumns}
dataSource={tableData}
- loading={loading}
+ loading={!initialized || loading}
locale={{
emptyText: ,
}}