mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
poll_modal: Disable browser autocomplete on question field.
We disable this on most similar inputs, and it is likely more distracting than helpful.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<form id="add-poll-form">
|
||||
<label class="poll-label">{{t "Question"}}</label>
|
||||
<div class="poll-question-input-container">
|
||||
<input type="text" id="poll-question-input" class="modal_text_input" placeholder="{{t 'Your question'}}" />
|
||||
<input type="text" id="poll-question-input" autocomplete="off" class="modal_text_input" placeholder="{{t 'Your question'}}" />
|
||||
</div>
|
||||
<label class="poll-label">{{t "Options"}}</label>
|
||||
<p>{{t "Anyone can add more options after the poll is posted."}}</p>
|
||||
|
Reference in New Issue
Block a user