Skip to content

Commit

Permalink
Fix tables
Browse files Browse the repository at this point in the history
  • Loading branch information
mboudet authored Feb 12, 2024
1 parent cd8e72e commit d8fe44e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions manager2/src/app/admin/databases/databases.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ <h3>Databases</h3>
</ng-template>
<ng-template pTemplate="header">
<tr>
<th pSortableColumn="name">Name <p-sortIcon field="name"</th>
<th pSortableColumn="owner">Owner <p-sortIcon field="owner"</th>
<th pSortableColumn="type">Type <p-sortIcon field="type"</th>
<th pSortableColumn="host">Host <p-sortIcon field="host"</th>
<th pSortableColumn="name">Name <p-sortIcon field="name"></p-sortIcon></th>
<th pSortableColumn="owner">Owner <p-sortIcon field="owner"></p-sortIcon></th>
<th pSortableColumn="type">Type <p-sortIcon field="type"></p-sortIcon></th>
<th pSortableColumn="host">Host <p-sortIcon field="host"></p-sortIcon></th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-database>
Expand Down
8 changes: 4 additions & 4 deletions manager2/src/app/admin/websites/websites.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ <h3>Web sites</h3>
</ng-template>
<ng-template pTemplate="header">
<tr>
<th pSortableColumn="name">Name <p-sortIcon field="name"</th>
<th pSortableColumn="owner">Owner <p-sortIcon field="owner"</th>
<th pSortableColumn="url">URL <p-sortIcon field="url"</th>
<th pSortableColumn="description">Description <p-sortIcon field="description"</th>
<th pSortableColumn="name">Name <p-sortIcon field="name"></p-sortIcon></th>
<th pSortableColumn="owner">Owner <p-sortIcon field="owner"></p-sortIcon></th>
<th pSortableColumn="url">URL <p-sortIcon field="url"></p-sortIcon></th>
<th pSortableColumn="description">Description <p-sortIcon field="description"></p-sortIcon></th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-web>
Expand Down

0 comments on commit d8fe44e

Please sign in to comment.