cargo fmt

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2022-05-12 11:54:21 +02:00
parent e9b9f33aee
commit 42fb291c7c
3 changed files with 5 additions and 4 deletions

View File

@ -483,7 +483,9 @@ Ext.define('PBS.DataStoreContent', {
datastore: view.datastore,
namespace: view.namespace ?? '',
listeners: {
destroy: () => view.down('pbsNamespaceSelector').store?.load(),
destroy: () => {
view.down('pbsNamespaceSelector').store?.load();
},
},
});
},