Skip to content

Commit 5daf801

Browse files
committed
Fixing issue, where divs where used instead of the required span.
1 parent bfc5014 commit 5daf801

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/task-management/components/task-management-table/task-management-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646

4747
<ng-template #priorityTpl let-row>
4848
<mat-chip color="primary" [ngClass]="getPriorityClass(row.priority)">
49-
<div>{{TaskManagementPrioritiesEnum[row.priority] | translate}}</div>
49+
<span>{{TaskManagementPrioritiesEnum[row.priority] | translate}}</span>
5050
</mat-chip>
5151
</ng-template>
5252

5353
<ng-template #statusTpl let-row>
5454
<mat-chip color="primary">
55-
<div>{{row.status | translate}}</div>
55+
<span>{{row.status | translate}}</span>
5656
</mat-chip>
5757
</ng-template>

0 commit comments

Comments
 (0)