Files
FarmMapsLib/projects/common-map/src/fm-map/components/widget-status/widget-status.component.html
Willem Dantuma cec43a636c
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Renamed prefixes in angular.json
2019-11-04 13:43:46 +01:00

7 lines
507 B
HTML

<div [ngSwitch]="stage">
<h6 *ngSwitchCase="StageEnum.DevelopmentPreAlpha" style="color:darkred" [ngbTooltip]="info" i18n><b>Stage:Pre-alpha</b></h6>
<h6 *ngSwitchCase="StageEnum.DevelopmentAlpha" style="color:red" [ngbTooltip]="info" i18n><b>Stage:Alpha</b></h6>
<h6 *ngSwitchCase="StageEnum.DevelopmentBeta" style="color:orange" [ngbTooltip]="info" i18n><b>Stage:Beta</b></h6>
<h6 *ngSwitchCase="StageEnum.ReleaseCandidate" style="color:green" [ngbTooltip]="info" i18n><b>Stage:RC</b></h6>
</div>