better naming

This commit is contained in:
Bruno Windels 2021-02-04 17:07:31 +01:00
parent cd4f62d178
commit 573076c263

View File

@ -97,12 +97,12 @@ class InstallClientView extends TemplateView {
children.push(actions); children.push(actions);
if (vm.showDeepLinkInInstall) { if (vm.showDeepLinkInInstall) {
const deepLink = t.a({ const openItHere = t.a({
rel: "noopener noreferrer", rel: "noopener noreferrer",
href: vm.openActions[0].url, href: vm.openActions[0].url,
onClick: () => vm.openActions[0].activated(), onClick: () => vm.openActions[0].activated(),
}, "open it here"); }, "open it here");
children.push(t.p([`If you already have ${vm.name} installed, you can `, deepLink, "."])) children.push(t.p([`If you already have ${vm.name} installed, you can `, openItHere, "."]))
} }
children.push(showBack(t, vm)); children.push(showBack(t, vm));