Browse Source

welcome: tame the linter

master
Saúl Ibarra Corretgé 5 years ago
parent
commit
738a199b4c
1 changed files with 3 additions and 4 deletions
  1. 3
    4
      react/features/welcome/components/WelcomePage.web.js

+ 3
- 4
react/features/welcome/components/WelcomePage.web.js View File

147
                                 <input
147
                                 <input
148
                                     autoFocus = { true }
148
                                     autoFocus = { true }
149
                                     className = 'enter-room-input'
149
                                     className = 'enter-room-input'
150
-                                    pattern = '^[a-zA-Z0-9=\?]+$'
151
-                                    title = { t('welcomepage.onlyAsciiAllowed') }
152
                                     id = 'enter_room_field'
150
                                     id = 'enter_room_field'
153
                                     onChange = { this._onRoomChange }
151
                                     onChange = { this._onRoomChange }
154
-                                    placeholder
155
-                                        = { this.state.roomPlaceholder }
152
+                                    pattern = '^[a-zA-Z0-9=\?]+$'
153
+                                    placeholder = { this.state.roomPlaceholder }
154
+                                    title = { t('welcomepage.onlyAsciiAllowed') }
156
                                     type = 'text'
155
                                     type = 'text'
157
                                     value = { this.state.room } />
156
                                     value = { this.state.room } />
158
                             </form>
157
                             </form>

Loading…
Cancel
Save