Skip to content

Commit

Permalink
:p: Pretend to be mobile friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnjack committed Aug 8, 2019
1 parent 936f59e commit 31f30d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/frontend/src/components/FeedItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
<router-link :to="{ name: 'build', params: { id: build.id}}">{{ build.id }}</router-link>
</td>
<td>{{ build.name }}</td>
<td>
<td class="hide-xs hide-sm">
{{ getParamsText }}
</td>
<td class="tooltip tooltip-right" :data-tooltip="getProgressTooltip">
<td class="tooltip tooltip-right hide-xs hide-sm" :data-tooltip="getProgressTooltip">
<BuildProgress :done="getDoneTasks" :total="getTotalTasks"/>
</td>
<td>
<BuildStatus :status="build.status"></BuildStatus>
</td>
<td>
<td class="hide-xs">
<Duration v-show="build.status !== 'pending'" :item="build" class="chip"></Duration>
</td>
<td class="actions">
Expand Down
6 changes: 3 additions & 3 deletions src/frontend/src/views/FeedView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<thead>
<th>#</th>
<th>Name</th>
<th>Params</th>
<th>Tasks</th>
<th class="hide-xs hide-sm">Params</th>
<th class="hide-xs hide-sm">Tasks</th>
<th>Status</th>
<th>Duration</th>
<th class="hide-xs">Duration</th>
<th>Actions</th>
</thead>
<tbody>
Expand Down

0 comments on commit 31f30d9

Please sign in to comment.