category.dashboards.forEach((dash, iDash) => {
				const dashObj = {
					id: iDash,
					fullName: dash,
					text: this.$izendaUrlService.extractReportName(dash)
				};
				currentDashboardsCollection.push(dashObj);

				if (this.location.getValue().isNew)
					return;
				if (dash === currentDashboardName)
					currentDashboard = dashObj;
			});
			dashboardModel.tiles.forEach(tile => {
				tile.reportName = this.$izendaUrlService.extractReportName(tile.reportSetName);
				tile.reportCategory = this.$izendaUrlService.extractReportCategory(tile.reportSetName);
			});