From bfc193d8cd9aecdb82d585e8b4e101deac60a5bb Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 29 Mar 2018 14:48:47 +0900 Subject: Resolve conflicts --- .../web/app/common/views/components/othello.vue | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/server/web/app/common/views/components/othello.vue') diff --git a/src/server/web/app/common/views/components/othello.vue b/src/server/web/app/common/views/components/othello.vue index d650322341..8f7d9dfd6a 100644 --- a/src/server/web/app/common/views/components/othello.vue +++ b/src/server/web/app/common/views/components/othello.vue @@ -31,28 +31,28 @@

対局の招待があります!:

- + {{ i.parent.name }} @{{ i.parent.username }} - +

自分の対局

- - + + {{ g.user1.name }} vs {{ g.user2.name }} - {{ g.is_ended ? '終了' : '進行中' }} + {{ g.isEnded ? '終了' : '進行中' }}

みんなの対局

- - + + {{ g.user1.name }} vs {{ g.user2.name }} - {{ g.is_ended ? '終了' : '進行中' }} + {{ g.isEnded ? '終了' : '進行中' }}
@@ -133,7 +133,7 @@ export default Vue.extend({ methods: { go(game) { (this as any).api('othello/games/show', { - game_id: game.id + gameId: game.id }).then(game => { this.matching = null; this.game = game; @@ -147,7 +147,7 @@ export default Vue.extend({ username }).then(user => { (this as any).api('othello/match', { - user_id: user.id + userId: user.id }).then(res => { if (res == null) { this.matching = user; @@ -164,7 +164,7 @@ export default Vue.extend({ }, accept(invitation) { (this as any).api('othello/match', { - user_id: invitation.parent.id + userId: invitation.parent.id }).then(game => { if (game) { this.matching = null; -- cgit v1.2.3-freya