From bcb94edeb48f1f07ebfe635801f725009b94e593 Mon Sep 17 00:00:00 2001 From: Opliko Date: Mon, 15 Aug 2022 18:55:14 +0200 Subject: [PATCH] feat: add event type to topic event component --- public/src/modules/helpers.common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/src/modules/helpers.common.js b/public/src/modules/helpers.common.js index 706c44c6fa..25907fb446 100644 --- a/public/src/modules/helpers.common.js +++ b/public/src/modules/helpers.common.js @@ -196,7 +196,7 @@ module.exports = function (utils, Benchpress, relative_path) { function renderEvents(events) { return events.reduce((html, event) => { - html += `
  • + html += `
  • @@ -216,7 +216,7 @@ module.exports = function (utils, Benchpress, relative_path) { html += ``; if (this.privileges.isAdminOrMod) { - html += ` `; + html += ` `; } return html;