also add change client link in install client screen

This commit is contained in:
Bruno Windels 2020-12-07 14:06:30 +01:00
parent 614388e663
commit 1896fde3a0
1 changed files with 6 additions and 0 deletions

View File

@ -117,6 +117,12 @@ class InstallClientView extends TemplateView {
children.push(t.p([`If you already have ${vm.name} installed, you can `, deepLink, "."]))
}
children.push(t.p({className: {previewSource: true, hidden: vm => !vm.showBack}}, [
`Continue with ${vm.name}.`,
" ",
t.button({className: "text", onClick: () => vm.back()}, "Change"),
]));
return t.div({className: "InstallClientView"}, children);
}
}