Skip to content

Commit

Permalink
Move Unsplash Config from RemoteConfig to environment file
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcibotari committed Jan 29, 2025
1 parent 4545d8e commit e133ebc
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ <h2 mat-dialog-title>Select Image from Unsplash</h2>
@if (isLoading()) {
<mat-progress-bar mode="query" />
}
<div class="px-6 pb-2">
<mat-dialog-content>
<br />
<mat-form-field>
<mat-label>Search</mat-label>
<input matInput #si (keyup.enter)="search(si.value)" placeholder="Ex. Morning Coffee or Sunrise" />
Expand All @@ -29,7 +30,7 @@ <h2 mat-dialog-title>Select Image from Unsplash</h2>
</button>
<mat-hint align="end">Remaining requests : {{ remaining() }} / {{ limit() }}</mat-hint>
</mat-form-field>
</div>
</mat-dialog-content>
<mat-dialog-content>
<div class="flex flex-wrap gap-2 justify-start">
@for (item of assets(); track item.id) {
Expand Down

0 comments on commit e133ebc

Please sign in to comment.