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,12 +147,11 @@ class WelcomePage extends AbstractWelcomePage {
147 147
                                 <input
148 148
                                     autoFocus = { true }
149 149
                                     className = 'enter-room-input'
150
-                                    pattern = '^[a-zA-Z0-9=\?]+$'
151
-                                    title = { t('welcomepage.onlyAsciiAllowed') }
152 150
                                     id = 'enter_room_field'
153 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 155
                                     type = 'text'
157 156
                                     value = { this.state.room } />
158 157
                             </form>

Loading…
Cancel
Save