@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.101 → 0.0.1-alpha.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -47044,7 +47044,7 @@ const EditModal$3 = ({
|
|
|
47044
47044
|
labels: values ? Object.entries(values).map(([key, value]) => `${key}=${value}`) : []
|
|
47045
47045
|
});
|
|
47046
47046
|
}
|
|
47047
|
-
}, [open,
|
|
47047
|
+
}, [open, form]);
|
|
47048
47048
|
const submit = () => {
|
|
47049
47049
|
form.validateFields().then(() => {
|
|
47050
47050
|
const result = {};
|
|
@@ -47433,7 +47433,7 @@ const EditModal$2 = ({
|
|
|
47433
47433
|
taints: values || []
|
|
47434
47434
|
});
|
|
47435
47435
|
}
|
|
47436
|
-
}, [open,
|
|
47436
|
+
}, [open, form]);
|
|
47437
47437
|
const submit = () => {
|
|
47438
47438
|
form.validateFields().then(() => {
|
|
47439
47439
|
console.log(JSON.stringify(taints));
|
|
@@ -47758,7 +47758,7 @@ const EditModal$1 = ({
|
|
|
47758
47758
|
tolerations: values || []
|
|
47759
47759
|
});
|
|
47760
47760
|
}
|
|
47761
|
-
}, [open,
|
|
47761
|
+
}, [open, form]);
|
|
47762
47762
|
const submit = () => {
|
|
47763
47763
|
form.validateFields().then(() => {
|
|
47764
47764
|
console.log(JSON.stringify(tolerations));
|
|
@@ -48133,7 +48133,7 @@ const EditModal = ({
|
|
|
48133
48133
|
})) : []
|
|
48134
48134
|
});
|
|
48135
48135
|
}
|
|
48136
|
-
}, [open,
|
|
48136
|
+
}, [open, form]);
|
|
48137
48137
|
const submit = () => {
|
|
48138
48138
|
form.validateFields().then(() => {
|
|
48139
48139
|
const result = {};
|