]> git.proxmox.com Git - pve-manager.git/commitdiff
ui snapshot: improve template string usage
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 30 Jan 2020 18:42:21 +0000 (19:42 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 30 Jan 2020 18:42:21 +0000 (19:42 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/window/Snapshot.js

index 99204c1626bbdd5232ed555c5196274da8beac9c..3b1070a20c979a8178c591c40442a0c822f130a4 100644 (file)
@@ -95,7 +95,7 @@ Ext.define('PVE.window.Snapshot', {
 
        let subject;
        if (me.snapname) {
-           subject = gettext('Snapshot') + ` ${me.snapname}`;
+           subject = `${gettext('Snapshot')} ${me.snapname}`;
            me.url += `/${me.snapname}/config`;
        } else {
            subject = (me.type === 'qemu' ? 'VM' : 'CT') + me.vmid + ' ' + gettext('Snapshot');