Fix iptables internet forwarding bug. Update UI errors.

This commit is contained in:
2026-09-27 06:08:07 +01:00
parent dc8700feaa
commit 400831246f
16 changed files with 136 additions and 97 deletions
@@ -78,7 +78,7 @@ export default function SetupUpdateWgUiAction({ setup }: Props) {
<Input<"repo_url">
label="Repository URL"
placeholder={SiteData["RepoURL"]}
value={repoUrl}
defaultValue={repoUrl}
onChange={(e) => {
setRepoUrl(e.target.value);
}}
@@ -88,7 +88,7 @@ export default function SetupUpdateWgUiAction({ setup }: Props) {
<Input<"branch">
label="Branch"
placeholder="main"
value={branch}
defaultValue={branch}
onChange={(e) => {
setBranch(e.target.value);
}}