Skip to content

Commit

Permalink
fix: Fix 'Updated' field in buckets view for aw-server-rust
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-bjareholt committed Jun 11, 2020
1 parent df5a625 commit 490901d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/views/Buckets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ div
small
| {{ data.item.hostname }}
template(v-slot:cell(last_updated)="data")
// aw-server-python
small(v-if="data.item.last_updated")
| {{ data.item.last_updated | friendlytime }}
// aw-server-rust
small(v-if="data.item.metadata.end")
| {{ data.item.metadata.end | friendlytime }}
template(v-slot:cell(actions)="data")
b-button-toolbar.float-right
b-button-group(size="sm", class="mx-1")
Expand Down

0 comments on commit 490901d

Please sign in to comment.