Fully implemented Custom GUIDs support and added WebUI page to manage it.

This commit is contained in:
Abdulmhsen B. A. A.
2024-10-07 19:43:38 +03:00
parent 1b7ef714c0
commit 9845cc300b
12 changed files with 520 additions and 413 deletions

View File

@@ -307,7 +307,9 @@ onMounted(async () => {
allEnabled.value = false
}
if (Boolean(route.query?.run ?? '0') || '' === command.value) {
const run = route.query?.run ? Boolean(route.query.run) : false
if (run || '' === command.value) {
await RunCommand()
}
})