[Glitch] Spell check input fields

Port 67744ee779 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
local
Christian Schmidt 1 year ago committed by Claire
parent 95e2cab22e
commit 8fd6c36243
  1. 4
      app/javascript/flavours/glitch/components/autosuggest_input.js
  2. 1
      app/javascript/flavours/glitch/features/compose/components/compose_form.js
  3. 1
      app/javascript/flavours/glitch/features/compose/components/poll_form.js

@ -51,6 +51,7 @@ export default class AutosuggestInput extends ImmutablePureComponent {
searchTokens: PropTypes.arrayOf(PropTypes.string), searchTokens: PropTypes.arrayOf(PropTypes.string),
maxLength: PropTypes.number, maxLength: PropTypes.number,
lang: PropTypes.string, lang: PropTypes.string,
spellCheck: PropTypes.string,
}; };
static defaultProps = { static defaultProps = {
@ -186,7 +187,7 @@ export default class AutosuggestInput extends ImmutablePureComponent {
}; };
render () { render () {
const { value, suggestions, disabled, placeholder, onKeyUp, autoFocus, className, id, maxLength, lang } = this.props; const { value, suggestions, disabled, placeholder, onKeyUp, autoFocus, className, id, maxLength, lang, spellCheck } = this.props;
const { suggestionsHidden } = this.state; const { suggestionsHidden } = this.state;
return ( return (
@ -212,6 +213,7 @@ export default class AutosuggestInput extends ImmutablePureComponent {
className={className} className={className}
maxLength={maxLength} maxLength={maxLength}
lang={lang} lang={lang}
spellCheck={spellCheck}
/> />
</label> </label>

@ -332,6 +332,7 @@ class ComposeForm extends ImmutablePureComponent {
className='spoiler-input__input' className='spoiler-input__input'
lang={this.props.lang} lang={this.props.lang}
autoFocus={false} autoFocus={false}
spellCheck
/> />
</div> </div>

@ -72,6 +72,7 @@ class Option extends React.PureComponent {
maxLength={pollLimits.max_option_chars} maxLength={pollLimits.max_option_chars}
value={title} value={title}
lang={lang} lang={lang}
spellCheck
onChange={this.handleOptionTitleChange} onChange={this.handleOptionTitleChange}
suggestions={this.props.suggestions} suggestions={this.props.suggestions}
onSuggestionsFetchRequested={this.onSuggestionsFetchRequested} onSuggestionsFetchRequested={this.onSuggestionsFetchRequested}

Loading…
Cancel
Save