ui: fix blinking subscription info panel

not having a subscription trumps having mixed subscriptions, so we
check that correctly

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2019-04-05 13:02:45 +02:00 committed by Thomas Lamprecht
parent cea0f76433
commit 9ccc0edbbd

View File

@ -229,7 +229,7 @@ Ext.define('PVE.dc.Summary', {
}
curlevel = records[i].get('level');
if (level === undefined) {
if (level === undefined || !curlevel) {
level = curlevel;
continue;
}