1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

Fixing filter reset button UI #587

This commit is contained in:
Patrik J. Braun 2023-03-21 20:41:07 +01:00
parent 86603dec48
commit 2185215ffc

View File

@ -75,16 +75,16 @@
[class.bg-primary]="option.selected" [class.bg-primary]="option.selected"
[class.bg-secondary]="!option.selected" [class.bg-secondary]="!option.selected"
>{{option.count}}</span> >{{option.count}}</span>
</li> </li>
</ul> </ul>
<div class="card-body text-center" *ngIf="filter.options.length === 0" i18n>Nothing to filter</div> <div class="card-body text-center" *ngIf="filter.options.length === 0" i18n>Nothing to filter</div>
</div> </div>
</div> </div>
</div> </div>
<div> <div class="row">
<button class="btn btn-primary float-end" i18n (click)="reset()">Reset</button> <div class="col mt-2">
<button class="btn btn-primary float-end" i18n (click)="reset()">Reset</button>
</div>
</div> </div>
</div> </div>
</div> </div>