From 6bebc623f98bc2e67f4d7a6d3ea8746081a41692 Mon Sep 17 00:00:00 2001 From: Gero Gerke Date: Tue, 5 Oct 2021 21:59:58 +0200 Subject: [PATCH] UI polish --- server/notification-providers/matrix.js | 2 +- src/components/notifications/Matrix.vue | 23 ++++++++++++++++------- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/server/notification-providers/matrix.js b/server/notification-providers/matrix.js index cd5c2426a..eeaa9eb91 100644 --- a/server/notification-providers/matrix.js +++ b/server/notification-providers/matrix.js @@ -15,7 +15,7 @@ class Matrix extends NotificationProvider { .slice(0, size); const roomId = notification .internalRoomId - .replaceALl(":", "%3A") + .replaceAll(":", "%3A") .replaceAll("!", "%21"); try { diff --git a/src/components/notifications/Matrix.vue b/src/components/notifications/Matrix.vue index 12c7dad80..acce9466e 100644 --- a/src/components/notifications/Matrix.vue +++ b/src/components/notifications/Matrix.vue @@ -1,17 +1,26 @@