Commits

Abel Gómez authored and github-actions[bot] committed 40b4df63544
Fix code alignment

(cherry picked from commit af193282da7d1dced620d74f811d888ace0cd25b)
No tags

src/app/system-wide-alert/alert-banner/system-wide-alert-banner.component.html

Modified
1 1 <div *ngIf="(systemWideAlert$ |async)?.active">
2 2 <div class="rounded-0 alert alert-warning w100 m-0 px-1">
3 3 <div class="container">
4 4 <span class="font-weight-bold">
5 - <span *ngIf="(countDownDays|async) > 0 || (countDownHours| async) > 0 || (countDownMinutes|async) > 0 ">
6 - {{'system-wide-alert-banner.countdown.prefix' | translate }}
7 - </span>
8 - <span *ngIf="(countDownDays|async) > 0">
9 - {{'system-wide-alert-banner.countdown.days' | translate: {
10 - days: countDownDays|async
11 - } }}
12 - </span>
13 - <span *ngIf="(countDownDays|async) > 0 || (countDownHours| async) > 0 ">
14 - {{'system-wide-alert-banner.countdown.hours' | translate: {
15 - hours: countDownHours| async
16 - } }}
17 - </span>
18 - <span *ngIf="(countDownDays|async) > 0 || (countDownHours| async) > 0 || (countDownMinutes|async) > 0 ">
19 - {{'system-wide-alert-banner.countdown.minutes' | translate: {
20 - minutes: countDownMinutes|async
21 - } }}
22 - </span>
5 + <span *ngIf="(countDownDays|async) > 0 || (countDownHours| async) > 0 || (countDownMinutes|async) > 0 ">
6 + {{ 'system-wide-alert-banner.countdown.prefix' | translate }}
7 + </span>
8 + <span *ngIf="(countDownDays|async) > 0">
9 + {{ 'system-wide-alert-banner.countdown.days' | translate: { days: countDownDays|async } }}
10 + </span>
11 + <span *ngIf="(countDownDays|async) > 0 || (countDownHours| async) > 0 ">
12 + {{ 'system-wide-alert-banner.countdown.hours' | translate: { hours: countDownHours| async } }}
13 + </span>
14 + <span *ngIf="(countDownDays|async) > 0 || (countDownHours| async) > 0 || (countDownMinutes|async) > 0 ">
15 + {{ 'system-wide-alert-banner.countdown.minutes' | translate: { minutes: countDownMinutes|async } }}
16 + </span>
23 17 </span>
24 18 <span [innerHTML]="(systemWideAlert$ |async)?.message"></span>
25 19 </div>
26 20 </div>
27 -</div>
21 +</div>

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut