Enhancement: Komodo widget (#5407)
Some checks failed
Docker CI / Linting Checks (push) Has been cancelled
Docker CI / Docker Build & Push (push) Has been cancelled

Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
Andrew Ensley
2025-06-11 12:05:53 -04:00
committed by GitHub
parent 6e16adc460
commit 8ce9e57ed8
8 changed files with 215 additions and 0 deletions

View File

@@ -338,6 +338,10 @@ export function cleanServiceGroups(groups) {
// jellystat
days,
// komodo
showSummary,
showStacks,
// kopia
snapshotHost,
snapshotPath,
@@ -450,6 +454,10 @@ export function cleanServiceGroups(groups) {
if (type === "proxmoxbackupserver") {
if (datastore) widget.datastore = datastore;
}
if (type === "komodo") {
if (showSummary !== undefined) widget.showSummary = !!JSON.parse(showSummary);
if (showStacks !== undefined) widget.showStacks = !!JSON.parse(showStacks);
}
if (type === "kubernetes") {
if (namespace) widget.namespace = namespace;
if (app) widget.app = app;