|
|
@ -1,19 +1,15 @@ |
|
|
|
<div class="container p-0"> |
|
|
|
<div class="no-gutters row"> |
|
|
|
<div |
|
|
|
class="flex-grow-1 status text-muted text-right" |
|
|
|
[title]=" |
|
|
|
errors?.length > 0 && !isLoading |
|
|
|
? 'Sorry! Our data provider partner is experiencing the hiccups.' |
|
|
|
: '' |
|
|
|
" |
|
|
|
(click)="errors?.length > 0 && onShowErrors()" |
|
|
|
> |
|
|
|
<ion-icon |
|
|
|
*ngIf="errors?.length > 0 && !isLoading" |
|
|
|
name="alert-circle-outline" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
@if (errors?.length > 0 && !isLoading) { |
|
|
|
<div |
|
|
|
class="flex-grow-1 status text-muted text-right" |
|
|
|
i18n-title |
|
|
|
title="Oops! Our data provider partner is experiencing the hiccups." |
|
|
|
(click)="onShowErrors()" |
|
|
|
> |
|
|
|
<ion-icon name="time-outline" /> |
|
|
|
</div> |
|
|
|
} |
|
|
|
<div *ngIf="isLoading" class="align-items-center d-flex"> |
|
|
|
<ngx-skeleton-loader |
|
|
|
animation="pulse" |
|
|
|