mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-24 21:53:40 +00:00
ui snapshot: improve template string usage
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
e1af138576
commit
37a48e7423
@ -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');
|
||||
|
Loading…
Reference in New Issue
Block a user