Explorar el Código

Added set dirty on change of cluster name

jnfrati hace 4 años
padre
commit
7a8a6a5e43
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      dashboard/src/main/home/provisioner/AWSFormSection.tsx

+ 1 - 0
dashboard/src/main/home/provisioner/AWSFormSection.tsx

@@ -307,6 +307,7 @@ const AWSFormSectionFC: React.FC<PropsType> = (props) => {
           type="text"
           value={clusterName}
           setValue={(x: string) => {
+            setIsFormDirty(true);
             setClusterName(x);
             setClusterNameSet(true);
           }}