this only happens on a fresh cluster but consistently reproducible in a
test environment. also cephfs also throws some error occasionally which
is also being handled similarly
Fixes: https://tracker.ceph.com/issues/68871
Signed-off-by: Nizamudeen A <nia@redhat.com>
<ng-template #ScheduleTpl
let-value="data.value"
let-row="data.row">
- <span *ngIf="value.length === 3"
+ <span *ngIf="value?.length === 3"
class="badge badge-info">{{ value[2] | cdDate }}</span>
</ng-template>
softRefresh() {
const data = _.cloneDeep(this.data); // Forces update of tab tables on tab switch
// Clients tab
- this.clients = data.clients;
- this.clients.status = new TableStatusViewCache(this.clients.status);
+ this.clients = data?.clients;
+ this.clients.status = new TableStatusViewCache(this.clients?.status);
// Details tab
this.details = {
standbys: data.standbys,