Skip to content

Commit

Permalink
Set "ask every time" checked by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Zocker1999NET committed Nov 22, 2022
1 parent fde5309 commit f28ac2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/open/ServerConsentView.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class ServerConsentView extends TemplateView {
t.form({action: "#", id: "serverConsentForm", onSubmit: evt => this._onSubmit(evt)}, [
t.mapView(vm => vm.showSelectServer, show => show ? new ServerOptions(vm) : null),
t.div({className: "actions"}, [
t.label([t.input({type: "checkbox", name: "askEveryTime"}), "Ask every time"]),
t.label([t.input({type: "checkbox", name: "askEveryTime", checked: true}), "Ask every time"]),
t.input({type: "submit", value: "Continue", className: "primary fullwidth"})
])
])
Expand Down

0 comments on commit f28ac2d

Please sign in to comment.