0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-30 22:50:05 +00:00

Fixed : Comment notification settings are visible even if comments are disabled

Added a UX condition to display comment notification settings, only if the user has enabled the comment notifications.
This commit is contained in:
Tushar Nain 2023-09-16 14:00:08 +05:30 committed by GitHub
parent dfaf6f7c13
commit 6a5361d853
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,20 +20,22 @@
'label' => trans('preferences.notifications_opt_own_page_changes'), 'label' => trans('preferences.notifications_opt_own_page_changes'),
]) ])
</div> </div>
<div> @if (!setting('app-disable-comments'))
@include('form.toggle-switch', [ <div>
'name' => 'preferences[own-page-comments]', @include('form.toggle-switch', [
'value' => $preferences->notifyOnOwnPageComments(), 'name' => 'preferences[own-page-comments]',
'label' => trans('preferences.notifications_opt_own_page_comments'), 'value' => $preferences->notifyOnOwnPageComments(),
]) 'label' => trans('preferences.notifications_opt_own_page_comments'),
</div> ])
<div> </div>
@include('form.toggle-switch', [ <div>
'name' => 'preferences[comment-replies]', @include('form.toggle-switch', [
'value' => $preferences->notifyOnCommentReplies(), 'name' => 'preferences[comment-replies]',
'label' => trans('preferences.notifications_opt_comment_replies'), 'value' => $preferences->notifyOnCommentReplies(),
]) 'label' => trans('preferences.notifications_opt_comment_replies'),
</div> ])
</div>
@endif
</div> </div>
<div class="mt-auto"> <div class="mt-auto">