Skip to content

Commit

Permalink
Merge pull request #37670 from apeyada/fix-37445
Browse files Browse the repository at this point in the history
fix wrong visiblity in workspace room settings
  • Loading branch information
MonilBhavsar authored Mar 4, 2024
2 parents 19a59f7 + afcfa34 commit a23caa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/settings/Report/ReportSettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function ReportSettingsPage({report, policies}: ReportSettingsPageProps) {
</View>
)}
</View>
{report?.visibility !== undefined &&
{!!report?.visibility &&
(shouldAllowChangeVisibility ? (
<MenuItemWithTopDescription
shouldShowRightIcon
Expand Down

0 comments on commit a23caa4

Please sign in to comment.