diff options
| author | tusooa <tusooa@kazv.moe> | 2023-07-17 17:29:18 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-07-17 17:29:18 -0400 |
| commit | a314ad7ccca05c91d4a717d956c207a0b0c47005 (patch) | |
| tree | 8411d9696a07008ab718581802124a76886b73a7 /src | |
| parent | 441eea36837a132b841d6c7423e146990b48ab16 (diff) | |
Add fallback return false for quotable judgements
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 97d3cb22..ba49961d 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -288,6 +288,8 @@ const PostStatusForm = { } else if (repliedStatus.visibility === 'private') { return repliedStatus.user.id === this.$store.state.users.currentUser.id } + + return false }, ...mapGetters(['mergedConfig']), ...mapState({ |
