From 7800a255442d25c2fb4696c30d1e72ac4b779498 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 1 Jul 2020 08:39:31 +0200 Subject: [PATCH] Fix notifications not using task title --- src/models/task.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/task.js b/src/models/task.js index ce84e42e..eec46888 100644 --- a/src/models/task.js +++ b/src/models/task.js @@ -182,7 +182,7 @@ export default class TaskModel extends AbstractModel { // Register the actual notification registration.showNotification('Vikunja Reminder', { tag: `vikunja-task-${this.id}`, // Group notifications by task id so we're only showing one notification per task - body: this.text, + body: this.title, // eslint-disable-next-line no-undef showTrigger: new TimestampTrigger(date), badge: '/images/icons/badge-monochrome.png',