From e15516c433b41d1b6db87fa77b1ebcb904771756 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 20 Jul 2020 22:26:57 +0000 Subject: [PATCH] --- ayanova/src/views/home-notifications.vue | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/ayanova/src/views/home-notifications.vue b/ayanova/src/views/home-notifications.vue index 0dc148b9..4face1b2 100644 --- a/ayanova/src/views/home-notifications.vue +++ b/ayanova/src/views/home-notifications.vue @@ -4,7 +4,21 @@ {{ obj }} - + @@ -50,6 +64,14 @@ export default { }; }, methods: { + subtitleHtml(item) { + let msg = ""; + if (item.message) { + msg = ` — ${item.message}`; + } else { + } + return `${item.uievent}${msg}`; + }, async getDataFromApi() { let vm = this;