From 506fe074df5430c5b72a427d60c93a2b88a94bf8 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 18 May 2024 17:37:49 -0600 Subject: [PATCH] fix: remove text area warnings --- .../application/advanced/cluster/modify-swarm-settings.tsx | 7 +++++++ 1 file changed, 7 insertions(+) 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 || ""}
 										/>