Skip to content

Commit

Permalink
#145 added ID column to script history (to easier find executed scripts)
Browse files Browse the repository at this point in the history
  • Loading branch information
bugy committed May 23, 2020
1 parent abf89bf commit 995fec1
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<table class="highlight striped">
<thead>
<tr>
<th class="id-column">ID</th>
<th class="start_time-column">Start Time</th>
<th class="user-column">User</th>
<th class="script-column">Script</th>
Expand All @@ -11,6 +12,7 @@
</thead>
<tbody v-if="!loading">
<tr :key="row.id" @click="rowClick(row)" v-for="row in rows">
<td>{{ row.id }}</td>
<td>{{ row.startTimeString }}</td>
<td>{{ row.user }}</td>
<td>{{ row.script }}</td>
Expand Down Expand Up @@ -44,6 +46,10 @@
cursor: pointer;
}
.executions-log-table .id-column {
width: 10%;
}
.executions-log-table .start_time-column {
width: 25%;
}
Expand All @@ -53,7 +59,7 @@
}
.executions-log-table .script-column {
width: 35%;
width: 25%;
}
.executions-log-table .status-column {
Expand Down

0 comments on commit 995fec1

Please sign in to comment.