1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-12-22 17:33:48 +03:00

Added "filter" to translations

This commit is contained in:
Adolfo Gómez García 2021-07-08 14:02:53 +02:00
parent f4f48f4168
commit 431f63382d
2 changed files with 7 additions and 6 deletions

View File

@ -1,8 +1,9 @@
<div class="filter"> <div class="filter">
<mat-form-field class="nav-input-field" floatLabel="auto"> <mat-form-field class="nav-input-field" floatLabel="auto">
<mat-label>Filter</mat-label> <mat-label>
<uds-translate>Filter</uds-translate>
</mat-label>
<input matInput type="text" #input> <input matInput type="text" #input>
<i class="material-icons" matSuffix>search</i> <i class="material-icons" matSuffix>search</i>
</mat-form-field> </mat-form-field>
</div> </div>

View File

@ -2,7 +2,7 @@
<div class="services-groups"> <div class="services-groups">
<mat-accordion> <mat-accordion>
<uds-services-group *ngFor="let g of group; let i = index" [services]="g.services" [group]="g.group" [expanded]="i==0"></uds-services-group> <uds-services-group *ngFor="let g of group; let i = index" [services]="g.services" [group]="g.group" [expanded]="i===0"></uds-services-group>
</mat-accordion> </mat-accordion>
</div> </div>