From 0d1ab5dfe9a66252f0d948096ee0228d88412060 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 02:13:28 +0300 Subject: [PATCH] Update group_title.js --- scripts/store/getters/group_title.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/store/getters/group_title.js b/scripts/store/getters/group_title.js index 78c0b944f..38592828c 100644 --- a/scripts/store/getters/group_title.js +++ b/scripts/store/getters/group_title.js @@ -3,6 +3,7 @@ module.exports = function () { if (this.categories.length) { return this.categories + .filter(c => c) .map(category => category.name) .sort() .join(';')