Skip to content

Commit

Permalink
UI: Configuration: add ui config control attribute for showing/hiding…
Browse files Browse the repository at this point in the history
… the stars block in the dashboard task page #1708
  • Loading branch information
shral committed Nov 29, 2018
1 parent 0f55fdb commit c340cbc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ export class QueueDashboardComponent implements OnInit,OnDestroy {
}
this.dashboardConfig.dcmuiQueueName = convertedQueueNames;
this.dashboardConfig.dcmuiExportName = convertedExporterIDs;
this.dashboardConfig.dicomuiDeviceName.splice(0, 0, '*');
if(!(_.hasIn(this.dashboardConfig,"dcmuiShowStarBlock") && this.dashboardConfig.dcmuiShowStarBlock === false)){
this.dashboardConfig.dicomuiDeviceName.splice(0, 0, '*');
}
this.getCounts();
}else{
this.service.getQueueName()
Expand Down

0 comments on commit c340cbc

Please sign in to comment.