From 407e305b09e4b5fcdc9a53e0f66bfc5674d0a6b0 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 5 Apr 2023 13:44:54 +0200 Subject: [PATCH 1/2] fix(frontend): moderator id missing --- frontend/src/pages/Community.spec.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/pages/Community.spec.js b/frontend/src/pages/Community.spec.js index 28d742fe9..bfb31bea2 100644 --- a/frontend/src/pages/Community.spec.js +++ b/frontend/src/pages/Community.spec.js @@ -72,6 +72,7 @@ describe('Community', () => { messagesCount: 0, deniedAt: null, deniedBy: null, + moderatorId: 69, }, { id: 1550, @@ -88,6 +89,7 @@ describe('Community', () => { messagesCount: 0, deniedAt: null, deniedBy: null, + moderatorId: 69, }, ], contributionCount: 1, From 90f4ccd932928c950738f18d9d0e11a0b7dda765 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 5 Apr 2023 15:27:34 +0200 Subject: [PATCH 2/2] set moderator id to null --- frontend/src/pages/Community.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/Community.spec.js b/frontend/src/pages/Community.spec.js index bfb31bea2..ab1572d37 100644 --- a/frontend/src/pages/Community.spec.js +++ b/frontend/src/pages/Community.spec.js @@ -72,7 +72,7 @@ describe('Community', () => { messagesCount: 0, deniedAt: null, deniedBy: null, - moderatorId: 69, + moderatorId: null, }, { id: 1550, @@ -89,7 +89,7 @@ describe('Community', () => { messagesCount: 0, deniedAt: null, deniedBy: null, - moderatorId: 69, + moderatorId: null, }, ], contributionCount: 1,