This commit is contained in:
Henry Jameson 2026-08-05 16:56:27 +03:00
commit 60d75c1ec7
2 changed files with 2 additions and 1 deletions

View file

@ -510,7 +510,7 @@ const PostStatusForm = {
// Error handling // Error handling
pollContentError() { pollContentError() {
return ( return (
this.pollFormVisible && this.newStatus.poll && this.newStatus.poll.error this.pollFormVisible && this.newStatus.poll?.error
) )
}, },

View file

@ -10,6 +10,7 @@
size="1" size="1"
class="input" class="input"
:placeholder="$t('post_status.quote_url')" :placeholder="$t('post_status.quote_url')"
:aria-label="$t('post_status.quote_url')"
> >
</div> </div>
<Quote <Quote