diff options
author | Eric Bailey <git@esb.lol> | 2024-08-21 15:11:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 13:11:47 -0700 |
commit | ddb0b80017c2b5bc158b8ff9da222abd5a8bf025 (patch) | |
tree | 0b111eea8358944571f21d23bad2fd9b971dd64f /src | |
parent | 5463e9718fec09f28b2e84ece34a056c52d9e0b3 (diff) | |
download | voidsky-ddb0b80017c2b5bc158b8ff9da222abd5a8bf025.tar.zst |
Fix hidden list for author (#4968)
Diffstat (limited to 'src')
-rw-r--r-- | src/components/moderation/Hider.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/moderation/Hider.tsx b/src/components/moderation/Hider.tsx index fcb88ddd9..39f28b403 100644 --- a/src/components/moderation/Hider.tsx +++ b/src/components/moderation/Hider.tsx @@ -58,7 +58,7 @@ export function Outer({ } const onSetContentVisible = (show: boolean) => { - if (meta.allowOverride) return + if (!meta.allowOverride) return setIsContentVisible(show) } |