Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
Avoid translations error 404 on start.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwu1105 committed Mar 14, 2021
1 parent 469ef6e commit 6aa994a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/features/home/home.page.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<ion-content *transloco="let t" scrollEvents (ionScroll)="onScroll($event)">
<ion-content scrollEvents (ionScroll)="onScroll($event)">
<ion-grid>
<ion-row>
<ion-col
Expand All @@ -15,8 +15,8 @@
</ion-grid>
<div *ngIf="(moments$ | ngrxPush)?.length === 0" class="empty-illustration">
<ion-img src="./assets/icons/undraw-blank-canvas.svg"></ion-img>
<h3>{{ t('nothingInAlbum') }}</h3>
<p>{{ t('message.emptyAlbum') }}</p>
<h3 *transloco="let t">{{ t('nothingInAlbum') }}</h3>
<p *transloco="let t">{{ t('message.emptyAlbum') }}</p>
</div>
<ion-fab vertical="bottom" horizontal="center" slot="fixed" edge>
<ion-fab-button routerLink="camera">
Expand Down

0 comments on commit 6aa994a

Please sign in to comment.