fix(frontend): fixed incorrect initial value for new volume record

pull/75/head
Samuel Rowe 3 years ago
parent 9a262d67a4
commit beaef44426

@ -35,8 +35,9 @@ const Volumes = () => {
const handleNewVolume = useCallback(() => {
formik.setFieldValue(`volumes[${volumes.length}]`, {
key: "",
value: ""
name: "",
containerPath: "",
accessMode: ""
});
}, [formik]);

Loading…
Cancel
Save