Skip to content

Commit 905bd64

Browse files
committed
Fix; 12 chars for a tag and a more responsive collectors grid
1 parent ef604b4 commit 905bd64

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

site/frontend/src/pages/status_new/collector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ function ActiveStatus({collector}: {collector: CollectorConfig}) {
149149
<template v-for="job in collector.jobs">
150150
<tr v-if="ACTIVE_FILTERS[job.status]">
151151
<td class="table-cell-padding">
152-
{{ job.requestTag }}
152+
{{ job.requestTag.slice(0, 12) }}
153153
</td>
154154
<td class="table-cell-padding">
155155
{{ formatJobStatus(job.status) }}

site/frontend/src/pages/status_new/page.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ loadStatusData(loading);
150150
<td><PullRequestLink :request="req" /></td>
151151
<td>{{ req.requestType }}</td>
152152
<td>
153-
{{ req.tag }}
153+
{{ req.tag.slice(0, 12) }}
154154
</td>
155155
<td>
156156
{{ formatStatus(req.status)
@@ -324,7 +324,7 @@ loadStatusData(loading);
324324
.collectors-grid {
325325
width: 100%;
326326
display: grid;
327-
grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
327+
grid-template-columns: repeat(auto-fill, minmax(500px, 100%));
328328
gap: 20px;
329329
}
330330
</style>

0 commit comments

Comments
 (0)