welcome: tame the linter

This commit is contained in:
Saúl Ibarra Corretgé 2019-09-13 11:40:23 +02:00 committed by Saúl Ibarra Corretgé
parent 40a1af5302
commit 738a199b4c
1 changed files with 3 additions and 4 deletions

View File

@ -147,12 +147,11 @@ class WelcomePage extends AbstractWelcomePage {
<input
autoFocus = { true }
className = 'enter-room-input'
pattern = '^[a-zA-Z0-9=\?]+$'
title = { t('welcomepage.onlyAsciiAllowed') }
id = 'enter_room_field'
onChange = { this._onRoomChange }
placeholder
= { this.state.roomPlaceholder }
pattern = '^[a-zA-Z0-9=\?]+$'
placeholder = { this.state.roomPlaceholder }
title = { t('welcomepage.onlyAsciiAllowed') }
type = 'text'
value = { this.state.room } />
</form>