Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/routes/deploy/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
d.operator && d.operatorValue != '' && cmd.push('--operator=' + d.operatorValue);
d.forceReauth && cmd.push('--force-reauth');
d.sshServer && cmd.push('--ssh');
d.usePreAuthKey && d.preAuthKey !== '' && cmd.push('--authkey=' + d.preAuthKey);
d.usePreAuthKey && d.preAuthKey !== '' && cmd.push('--auth-key=' + d.preAuthKey);
d.unattended && cmd.push('--unattended')

// advertise
Expand Down Expand Up @@ -142,7 +142,7 @@
name="Unattended"
help="Run the tailscale client in unattended mode (on startup)"
/>
<DeployCheck
<DeployCheck
bind:checked={deployment.advertiseExitNodeLocalAccess}
name="Allow LAN Access"
help="Allow local network access while connected to the TailNet and using an exit node"
Expand Down