From 75462458bd66a944a8be70a7d1508b6c187b2318 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Sun, 6 Nov 2022 17:12:43 -0700 Subject: [PATCH] Replaced single quote with backtick --- front/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/dashboard.js b/front/dashboard.js index 99b19f9..a7bcf84 100644 --- a/front/dashboard.js +++ b/front/dashboard.js @@ -8,7 +8,7 @@ function Peer(data) { this.isDeleting = ko.observable(false) this.deleteText = ko.computed(() => this.isDeleting()?'Deleting...':'Delete') this.crtHref = ko.computed(() => `/ssl?host=${this.name}&ext=crt`) - this.keyHref = ko.computed(() => '/ssl?host=${this.name}&ext=key') + this.keyHref = ko.computed(() => `/ssl?host=${this.name}&ext=key`) } function PeerList() {