Skip to content

Commit

Permalink
remove p-button-rounded
Browse files Browse the repository at this point in the history
  • Loading branch information
Slawomir Wieczorek committed Nov 29, 2024
1 parent 94e2d4f commit f04100c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ <h2 class="content-block">{{ '@Users overview' | transloco }}</h2>
<p-button (onClick)="reload()" [disabled]="(dataLoading$ | async) ?? false"
icon="pi pi-replay"
label="{{ '@Reload' | transloco }}"
styleClass="p-button-rounded p-button-success"/>
styleClass="p-button-success"/>
</div>
<div class="ml-1" style="text-align: left">
<p-button (onClick)="clearCache()" [disabled]="(dataLoading$ | async) ?? false"
icon="pi pi-times-circle"
label="{{ '@Clear cache' | transloco }}"
styleClass="p-button-rounded p-button-help"/>
styleClass="p-button-help"/>
</div>
</div>
</ng-template>
Expand All @@ -46,7 +46,8 @@ <h2 class="content-block">{{ '@Users overview' | transloco }}</h2>
<td *ngFor="let col of columns">
<ng-container
*ngIf="shouldShowTag(row[col.field], row[col.field + NO_TAG]); else singleValue">
<p-tag *ngFor="let value of row[col.field].split(',')" [severity]="getTagSeverity(value)" [value]="value.trim()"
<p-tag *ngFor="let value of row[col.field].split(',')" [severity]="getTagSeverity(value)"
[value]="value.trim()"
class="m-1"></p-tag>
</ng-container>
<ng-template #singleValue>
Expand Down

0 comments on commit f04100c

Please sign in to comment.