From b5f6c9785a1e4162518a3dd8a662a5432f5c8093 Mon Sep 17 00:00:00 2001 From: chiayin Date: Wed, 4 Oct 2023 15:14:15 +0800 Subject: [PATCH] Issue #7: Done. --- src/stores/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/files.js b/src/stores/files.js index b4fa4ba..fb78d82 100644 --- a/src/stores/files.js +++ b/src/stores/files.js @@ -66,7 +66,7 @@ export default defineStore('filesStore', { this.allEventLog = response.data; this.allEventLog.map(o => { o.icon = 'work_history'; - o.parentLog = "-"; + o.parentLog = o.name; o.fileType = "Log"; o.ownerName = o.owner.name; o.updated_at = moment(o.updated_at).utcOffset('+08:00').format('YYYY-MM-DD HH:mm');