collapseQueueList()

in src/app/components/queue-rack/queue-rack.component.ts [52:60]


  collapseQueueList(item: QueueInfo) {
    if (this.queueList) {
      this.queueList.forEach((queue) => {
        if (queue !== item) {
          queue.isExpanded = false;
        }
      });
    }
  }