Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/afraid-boxes-destroy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@rocket.chat/meteor": patch
"@rocket.chat/core-typings": patch
---

Fixes an issue in `Admin > Settings` page where sometimes settings guarded by a license module would not be editable despite having the required modules.
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ export class RocketChatSettingsAdapter {
i18nLabel: 'Federation_Matrix_max_size_of_public_rooms_users',
i18nDescription: 'Federation_Matrix_max_size_of_public_rooms_users_desc',
alert: 'Federation_Matrix_max_size_of_public_rooms_users_Alert',
modules: ['federation'],
public: true,
enterprise: true,
invalidValue: false,
Expand Down
1 change: 1 addition & 0 deletions apps/meteor/server/settings/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export const createLayoutSettings = () =>
invalidValue: false,
enterprise: true,
public: true,
modules: ['hide-watermark'],
enableQuery: [
{
_id: 'Layout_Home_Body',
Expand Down
Loading