Skip to content

Commit

Permalink
Remove revision date in config project list
Browse files Browse the repository at this point in the history
  • Loading branch information
differsthecat committed Sep 19, 2024
1 parent 63a024b commit 8f24b8c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</label>
</th>
<th bitCell bitSortable="name" default>{{ "name" | i18n }}</th>
<th bitCell bitSortable="revisionDate">{{ "lastEdited" | i18n }}</th>
<th bitCell bitSortable="revisionDate" *ngIf="showMenus">{{ "lastEdited" | i18n }}</th>
<th
bitCell
class="tw-w-0"
Expand Down Expand Up @@ -85,7 +85,9 @@
</div>
</div>
</td>
<td bitCell class="tw-whitespace-nowrap">{{ project.revisionDate | date: "medium" }}</td>
<td bitCell class="tw-whitespace-nowrap" *ngIf="showMenus">
{{ project.revisionDate | date: "medium" }}
</td>
<td bitCell>
<button
type="button"
Expand Down

0 comments on commit 8f24b8c

Please sign in to comment.