ui: followup: add missing semicolon

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-03-10 15:42:41 +01:00
parent 4aa70a6b3a
commit 619c74f2d7

View File

@ -57,7 +57,7 @@ Ext.define('PVE.data.ResourceStore', {
let me = this;
// can only refresh if we're loaded at least once and are not currently loading
if (!me.isLoading() && me.isLoaded()) {
let records = (me.getData().getSource() || me.getData()).getRange()
let records = (me.getData().getSource() || me.getData()).getRange();
me.fireEvent('load', me, records);
}
},