formatting

This commit is contained in:
Bruno Windels 2020-12-02 12:59:48 +01:00
parent a646eb251a
commit 173696f46e
1 changed files with 10 additions and 2 deletions

View File

@ -41,11 +41,19 @@ class AllClientsView extends TemplateView {
});
}),
t.div(t.label([
t.input({type: "checkbox", checked: vm.showUnsupportedPlatforms, onChange: evt => vm.showUnsupportedPlatforms = evt.target.checked}),
t.input({
type: "checkbox",
checked: vm.showUnsupportedPlatforms,
onChange: evt => vm.showUnsupportedPlatforms = evt.target.checked,
}),
"Show apps not available on my platform"
])),
t.div(t.label([
t.input({type: "checkbox", checked: vm.showExperimental, onChange: evt => vm.showExperimental = evt.target.checked}),
t.input({
type: "checkbox",
checked: vm.showExperimental,
onChange: evt => vm.showExperimental = evt.target.checked,
}),
"Show experimental apps"
])),
]);