diff options
| author | Ben Woodward <benjamindwoodward@gmail.com> | 2020-06-07 17:35:16 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-07 17:35:16 -0700 |
| commit | 01c3432a6d81020a0a807474669470bfe04c16de (patch) | |
| tree | 6a8f455db6500d9aeaeb48400a8dd0890c275347 /src | |
| parent | 2397ed17a9c0f55cc47dbd53fca1098baa105ffc (diff) | |
Update deps (#7)
* :arrow_up: yarn upgrade
* Run yarn for first time install
* :lipstick: s/maxlength/maxLength on input fields
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Card.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Card.js b/src/components/Card.js index dfe804f..6c97947 100644 --- a/src/components/Card.js +++ b/src/components/Card.js | |||
| @@ -42,9 +42,9 @@ const Card = () => { | |||
| 42 | 42 | ||
| 43 | <div className="text"> | 43 | <div className="text"> |
| 44 | <label>Network name</label> | 44 | <label>Network name</label> |
| 45 | <input id="ssid" type="text" maxlength="32" placeholder="WiFi Network name" value={ssid} onChange={event => setSsid(event.target.value)} /> | 45 | <input id="ssid" type="text" maxLength="32" placeholder="WiFi Network name" value={ssid} onChange={event => setSsid(event.target.value)} /> |
| 46 | <label>Password</label> | 46 | <label>Password</label> |
| 47 | <input id="password" type="text" maxlength="64" placeholder="Password" value={password} onChange={event => setPassword(event.target.value)} /> | 47 | <input id="password" type="text" maxLength="64" placeholder="Password" value={password} onChange={event => setPassword(event.target.value)} /> |
| 48 | </div> | 48 | </div> |
| 49 | </div> | 49 | </div> |
| 50 | 50 | ||
