Skip to content

Commit

Permalink
Merge pull request #235 from paywteam/master
Browse files Browse the repository at this point in the history
Merge stable
  • Loading branch information
jhaemin authored Dec 12, 2019
2 parents c131ee9 + 04ad187 commit 412959e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/auth/AuthCommonForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export default {
* @param {KeyboardEvent} e
*/
handleKeydown(e) {
if (e.key.match(/[@ ]/)) {
if (e && e.key && e.key.match(/[@ ]/)) {
e.preventDefault()
}
},
Expand Down
1 change: 1 addition & 0 deletions src/components/cafeteria/MealTimeGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ export default {
flex-wrap: wrap;
justify-content: space-evenly;
padding: s(3) s(2);
word-break: break-all;
.menu-item {
margin: 0 s(2) s(1) s(2);
Expand Down
2 changes: 1 addition & 1 deletion src/modules/eodiro-api/api-host.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default class ApiHost {
*/
static setHost(host) {
if (host.startsWith('eodiro')) {
host = 'https://' + host
host = 'https://api2.' + host
} else {
host = 'http://' + host.split(':')[0] + ':4000'
}
Expand Down

0 comments on commit 412959e

Please sign in to comment.