async loadDataFromService() { try { const boxes = await this.boxService.loadBoxes(this.params); for (let box of boxes) { this.boxes.push(box); } this.onRefreshComplete(boxes); } catch { } }