lib/values: fix submodule definition merging

This commit is contained in:
Johannes Kirschbauer
2024-12-06 19:53:34 +01:00
parent 388455038a
commit cc1eaf53ae
4 changed files with 84 additions and 28 deletions

View File

@@ -40,7 +40,7 @@ export const MachineListItem = (props: MachineListItemProps) => {
}
if (!info?.deploy?.targetHost) {
toast.error(
"Machine does not have a target host. Specify where the machine should be deployed."
"Machine does not have a target host. Specify where the machine should be deployed.",
);
return;
}
@@ -63,7 +63,7 @@ export const MachineListItem = (props: MachineListItemProps) => {
loading: "Installing...",
success: "Installed",
error: "Failed to install",
}
},
);
setInstalling(false);
};
@@ -80,7 +80,7 @@ export const MachineListItem = (props: MachineListItemProps) => {
}
if (!info?.deploy.targetHost) {
toast.error(
"Machine does not have a target host. Specify where the machine should be deployed."
"Machine does not have a target host. Specify where the machine should be deployed.",
);
return;
}
@@ -101,7 +101,7 @@ export const MachineListItem = (props: MachineListItemProps) => {
loading: "Updating...",
success: "Updated",
error: "Failed to update",
}
},
);
setUpdating(false);
};