Skip to content

Commit

Permalink
🐛 Fix maxlength for email and passwd
Browse files Browse the repository at this point in the history
Fixes #15
Removes maxlength requirement on email and password fields
  • Loading branch information
mijdavis2 committed Feb 23, 2018
1 parent 2c18678 commit 9201668
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "upstream",
"version": "2.1.0",
"version": "2.1.1",
"author": "mijdavis2",
"description": "Streamflow calc utility for Trout Unlimited",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/Config/Email.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<dl>
<dt><label>My Google Email</label></dt>
<dd>
<input class="form-control input-block" type="text" maxlength="30"
<input class="form-control input-block" type="text"
v-model="myEmail"
placeholder="[email protected]">
</dd>
Expand All @@ -21,7 +21,7 @@
<dl>
<dt><label>Password</label></dt>
<dd>
<input class="form-control input-block" type="password" maxlength="30"
<input class="form-control input-block" type="password"
id="myPassword"
placeholder="secure password">
</dd>
Expand Down

0 comments on commit 9201668

Please sign in to comment.