From 192a519d569137f094f1967ba682ba2c1dee502b Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Wed, 18 Oct 2023 12:11:02 +0200 Subject: [PATCH] fixup! feat(ConversationSettings): allow moderators to enable consent per conversation (V2) Signed-off-by: Maksim Sukharev --- .../ConversationSettings/RecordingConsentSettings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ConversationSettings/RecordingConsentSettings.vue b/src/components/ConversationSettings/RecordingConsentSettings.vue index 4ad6b1e54bce..09cd9729e16f 100644 --- a/src/components/ConversationSettings/RecordingConsentSettings.vue +++ b/src/components/ConversationSettings/RecordingConsentSettings.vue @@ -90,7 +90,7 @@ export default { }, summaryLabel() { - return this.recordingConsentSelected === !!CALL.RECORDING_CONSENT.REQUIRED + return this.conversation.recordingConsent === CALL.RECORDING_CONSENT.REQUIRED ? t('spreed', 'Recording consent is required for calls in this conversation') : t('spreed', 'Recording consent is not required for calls in this conversation') },