- add colorview component - improve generic action column - improve generic table - improve event-type-table.component.ts - add headerText to admin layout
14 lines
389 B
HTML
14 lines
389 B
HTML
<div class="flex flex-row gap-1 items-center">
|
|
|
|
@for (action of actions(); track action){
|
|
<a class="btn btn-primary" title="{{action.title ?? '' }}" (click)="onClick($event,action)">
|
|
@if(action.svgIcon){
|
|
<span [outerHTML]="action.svgIcon | safeHtml"></span>
|
|
}
|
|
@if ( action.text !== false){
|
|
{{action.text || action.action}}
|
|
}
|
|
</a>
|
|
}
|
|
</div>
|