From 1896fde3a05b9c8821764b4694b7f8e33bdcd992 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 7 Dec 2020 14:06:30 +0100 Subject: [PATCH] also add change client link in install client screen --- src/open/ClientView.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/open/ClientView.js b/src/open/ClientView.js index b3c8c45..8859f4b 100644 --- a/src/open/ClientView.js +++ b/src/open/ClientView.js @@ -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); } }