diff --git a/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx b/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx index 33a792b3..53675279 100644 --- a/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx +++ b/components/dashboard/application/advanced/cluster/modify-swarm-settings.tsx @@ -314,6 +314,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => { "Retries" : 10 }`} {...field} + value={field?.value || ""} />
@@ -366,6 +367,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => {
"Window" : 10000
} `}
{...field}
+ value={field?.value || ""}
/>
@@ -430,6 +432,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => {
}]
} `}
{...field}
+ value={field?.value || ""}
/>
@@ -486,6 +489,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => {
"Order" : "start-first"
}`}
{...field}
+ value={field?.value || ""}
/>
@@ -542,6 +546,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => {
"Order" : "start-first"
}`}
{...field}
+ value={field?.value || ""}
/>
@@ -604,6 +609,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => {
"GlobalJob" : {}
}`}
{...field}
+ value={field?.value || ""}
/>
@@ -650,6 +656,7 @@ export const AddSwarmSettings = ({ applicationId }: Props) => {
"com.example.app.version" : "1.0.0"
}`}
{...field}
+ value={field?.value || ""}
/>