Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hr20k committed Nov 27, 2019
1 parent cf9a288 commit bb22fb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/src/components/AddItemModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ export default {
image_url: '',
notes: ''
}
this.tags = []
},
fullscreen () {
this.width = window.innerWidth < 700 ? '100%' : '70%'
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/ItemDetailModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ export default {
image_url: '',
notes: ''
}
this.tags = []
},
fullscreen () {
this.width = window.innerWidth < 700 ? '100%' : '70%'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/auth/Signup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default {
],
password: [
{ required: true, message: 'パスワードを入力して下さい', trigger: 'change' },
{ min: 4, max: 20, message: 'パスワードは4文字以上20文字以下です', trigger: 'change' }
{ min: 8, max: 20, message: 'パスワードは8文字以上20文字以下です', trigger: 'change' }
],
passwordAgain: [
{ required: true, message: 'パスワードを入力して下さい', trigger: 'change' },
Expand Down

0 comments on commit bb22fb8

Please sign in to comment.