Skip to content

Commit

Permalink
fix: modified time on info prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiresviana committed Mar 11, 2021
1 parent 326b35a commit 11ebaec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/prompts/Info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
return moment(this.req.modified).fromNow()
}
return moment(this.req.items[this.selected[0]]).fromNow()
return moment(this.req.items[this.selected[0]].modified).fromNow()
},
name: function () {
return this.selectedCount === 0 ? this.req.name : this.req.items[this.selected[0]].name
Expand Down

0 comments on commit 11ebaec

Please sign in to comment.