mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-13 11:47:10 +00:00
ui: parser: fixup printing LXC network
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
8af03a8dbd
commit
f155d934e2
@ -323,7 +323,7 @@ Ext.define('PVE.Parser', {
|
||||
tag: 1,
|
||||
};
|
||||
return Object.entries(config)
|
||||
.filter(([k, v]) => v !== undefined && knownKeys[k])
|
||||
.filter(([k, v]) => v !== undefined && v !== '' && knownKeys[k])
|
||||
.map(([k, v]) => `${k}=${v}`)
|
||||
.join(',');
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user