onPartitionSelectionChanged()

in src/app/components/queues-view/queues-view.component.ts [206:215]


  onPartitionSelectionChanged(selected: MatSelectChange) {
    if (selected.value !== '') {
      this.partitionSelected = selected.value;
      this.closeQueueDrawer();
      this.fetchSchedulerQueuesForPartition(this.partitionSelected);
    } else {
      this.partitionSelected = '';
      this.queueList = {};
    }
  }