+
+ The node is offline. It may be due to a temporary network issue or a
+ problem with the node itself.
+
+ You might need to start an Agent on the node.
+
+
{
id: makeId("volume"),
name: "",
path: "",
- backupSchedule: null,
});
};
@@ -208,18 +206,6 @@ effect(() => {
: null;
});
-const toggleVolumeBackups = (volume) => {
- if (volume.backupSchedule === null) {
- volume.backupSchedule = {
- preset: "daily",
- s3StorageId: props.s3Storages[0].id,
- expr: "0 0 * * *",
- };
- } else {
- volume.backupSchedule = null;
- }
-};
-
const processRemoveInput = ref();
const processRemoval = reactive({
@@ -536,10 +522,10 @@ const selectedWorkerErrors = computed(() => {