ui: fix layout reset
we have to iterate over the keys of the state object here, not over the values. This meant one could not reset the layout from the settings window. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
50c0246a89
commit
83daeed72a
@ -96,7 +96,7 @@ Ext.define('PBS.window.Settings', {
|
||||
click: function() {
|
||||
let blacklist = ['login-username'];
|
||||
let sp = Ext.state.Manager.getProvider();
|
||||
for (const state of Object.values(sp.state)) {
|
||||
for (const state of Object.keys(sp.state)) {
|
||||
if (blacklist.indexOf(state) !== -1) {
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user