Browse Source

Migrate to control flow

pull/5000/head
Thomas Kaul 1 week ago
parent
commit
2cfce5edde
  1. 4
      libs/ui/src/lib/value/value.component.html

4
libs/ui/src/lib/value/value.component.html

@ -5,7 +5,7 @@
}
<div class="d-flex flex-column w-100">
<ng-template #label><ng-content></ng-content></ng-template>
<ng-container *ngIf="value || value === 0 || value === null">
@if (value || value === 0 || value === null) {
<div
class="align-items-center d-flex"
[ngClass]="position === 'end' ? 'justify-content-end' : ''"
@ -72,7 +72,7 @@
</div>
}
</div>
</ng-container>
}
@if (value === undefined) {
<ngx-skeleton-loader

Loading…
Cancel
Save