From 11ebaec5f0671ec02ebe55d4a73a514bce3a6713 Mon Sep 17 00:00:00 2001 From: Ramires Viana <59319979+ramiresviana@users.noreply.github.com> Date: Thu, 11 Mar 2021 15:20:37 +0000 Subject: [PATCH] fix: modified time on info prompt --- frontend/src/components/prompts/Info.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/prompts/Info.vue b/frontend/src/components/prompts/Info.vue index 2265b85c..0a3e8f21 100644 --- a/frontend/src/components/prompts/Info.vue +++ b/frontend/src/components/prompts/Info.vue @@ -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