feat: wire gui instance start and delete confirmation

This commit is contained in:
QiuSW
2026-07-22 17:02:59 +08:00
parent 46578c8743
commit 176e3cdad2
12 changed files with 600 additions and 59 deletions
+4 -1
View File
@@ -116,7 +116,10 @@ func BuildArgs(spec domain.LaunchSpec) ([]string, error) {
}
args = append(args, extra)
}
return append(args, normalized.TargetURL), nil
if normalized.TargetURL != "" {
args = append(args, normalized.TargetURL)
}
return args, nil
}
func normalizeProxy(value string) (string, error) {