Skip to content

Commit ee23d24

Browse files
authored
Merge pull request #139 from CenterForOpenScience/bug/231-table-columns-space
fix(bug): fixed table columns space
2 parents 79b8c69 + fb5a7e8 commit ee23d24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/features/meetings/pages/meeting-details/meeting-details.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
<td>{{ item.title }}</td>
6262
<td>{{ item.authorName }}</td>
6363
<td>{{ item.meetingCategory }}</td>
64-
<td>{{ item.dateCreated | date: 'MMM d, y, h:mm a' }}</td>
65-
<td>
64+
<td class="w-14rem">{{ item.dateCreated | date: 'MMM d, y, h:mm a' }}</td>
65+
<td class="text-center" [class.w-9rem]="!item.downloadCount">
6666
@if (item.downloadCount) {
6767
<p-button
6868
[label]="'meetings.details.downloadButton' | translate"

0 commit comments

Comments
 (0)