in src/app/components/apps-view/apps-view.component.ts [326:342]
onPartitionSelectionChanged(selected: MatSelectChange) {
if (selected.value !== '') {
this.searchText = '';
this.partitionSelected = selected.value;
this.appDataSource.data = [];
this.removeRowSelection();
this.clearQueueSelection();
this.fetchQueuesForPartition(this.partitionSelected);
} else {
this.searchText = '';
this.partitionSelected = '';
this.leafQueueSelected = '';
this.appDataSource.data = [];
this.removeRowSelection();
this.clearQueueSelection();
}
}