File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
site/frontend/src/pages/status_new Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ function ActiveStatus({collector}: {collector: CollectorConfig}) {
149
149
<template v-for =" job in collector .jobs " >
150
150
<tr v-if =" ACTIVE_FILTERS[job.status]" >
151
151
<td class =" table-cell-padding" >
152
- {{ job.requestTag }}
152
+ {{ job.requestTag.slice(0, 12) }}
153
153
</td >
154
154
<td class =" table-cell-padding" >
155
155
{{ formatJobStatus(job.status) }}
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ loadStatusData(loading);
150
150
<td ><PullRequestLink :request =" req" /></td >
151
151
<td >{{ req.requestType }}</td >
152
152
<td >
153
- {{ req.tag }}
153
+ {{ req.tag.slice(0, 12) }}
154
154
</td >
155
155
<td >
156
156
{{ formatStatus(req.status)
@@ -324,7 +324,7 @@ loadStatusData(loading);
324
324
.collectors-grid {
325
325
width : 100% ;
326
326
display : grid ;
327
- grid-template-columns : repeat (auto-fill , minmax (500px , 1 fr ));
327
+ grid-template-columns : repeat (auto-fill , minmax (500px , 100 % ));
328
328
gap : 20px ;
329
329
}
330
330
</style >
You can’t perform that action at this time.
0 commit comments