Skip to content

Commit

Permalink
chore(edit-content): fix sonar issue #30515
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Nov 28, 2024
1 parent bf66229 commit 4e3dd97
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,24 +46,24 @@
</ng-template>
<ng-template pTemplate="header" styleClass="relative">
<tr>
<th style="width: 4rem"><p-tableHeaderCheckbox /></th>
<th pSortableColumn="title">
<th scope="col" style="width: 4rem"><p-tableHeaderCheckbox /></th>
<th scope="col" pSortableColumn="title">
Title
<p-sortIcon field="title" />
</th>
<th pSortableColumn="step">
<th scope="col" pSortableColumn="step">
Step
<p-sortIcon field="step" />
</th>
<th pSortableColumn="description">
<th scope="col" pSortableColumn="description">
Description
<p-sortIcon field="description" />
</th>
<th pSortableColumn="lastUpdate">
<th scope="col" pSortableColumn="lastUpdate">
Last Update
<p-sortIcon field="lastUpdate" />
</th>
<th>Menu</th>
<th scope="col">Menu</th>
</tr>
</ng-template>
<ng-template pTemplate="emptymessage">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
icon="pi pi-plus"
[text]="true" />
<tr class="relationship-field__table_header">
<th>{{ 'dot.file.relationship.field.table.title' | dm }}</th>
<th>{{ 'dot.file.relationship.field.table.language' | dm }}</th>
<th>{{ 'dot.file.relationship.field.table.state' | dm }}</th>
<th scope="col">{{ 'dot.file.relationship.field.table.title' | dm }}</th>
<th scope="col">{{ 'dot.file.relationship.field.table.language' | dm }}</th>
<th scope="col">{{ 'dot.file.relationship.field.table.state' | dm }}</th>
</tr>
</ng-template>
<ng-template pTemplate="emptymessage">
Expand Down

0 comments on commit 4e3dd97

Please sign in to comment.