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:
Dominik Csapak 2024-04-22 13:06:16 +02:00 committed by Fabian Grünbichler
parent 50c0246a89
commit 83daeed72a

View File

@ -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;
}