Replaced single quote with backtick

master
Keith Irwin 2022-11-06 17:12:43 -07:00
parent b8fa426971
commit 75462458bd
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
1 changed files with 1 additions and 1 deletions

View File

@ -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() {