summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-05-04 16:56:23 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-05-04 16:56:23 +0900
commitfc166b7beedcfde31c53545bafea8a7ddda1e632 (patch)
tree143c045daac804cd693fa80f12767bab6d07fa3e
parent:v: (diff)
downloadsharkey-fc166b7beedcfde31c53545bafea8a7ddda1e632.tar.gz
sharkey-fc166b7beedcfde31c53545bafea8a7ddda1e632.tar.bz2
sharkey-fc166b7beedcfde31c53545bafea8a7ddda1e632.zip
oops
-rw-r--r--package.json4
-rw-r--r--src/client/app/common/views/components/othello.vue8
2 files changed, 6 insertions, 6 deletions
diff --git a/package.json b/package.json
index c29b9d5d8d..cf47ec924e 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
- "version": "2.0.0",
- "clientVersion": "1.0.5184",
+ "version": "2.1.0",
+ "clientVersion": "1.0.5187",
"codename": "nighthike",
"main": "./built/index.js",
"private": true,
diff --git a/src/client/app/common/views/components/othello.vue b/src/client/app/common/views/components/othello.vue
index fafa047255..49ef4d73a8 100644
--- a/src/client/app/common/views/components/othello.vue
+++ b/src/client/app/common/views/components/othello.vue
@@ -40,8 +40,8 @@
<section v-if="myGames.length > 0">
<h2>自分の対局</h2>
<a class="game" v-for="g in myGames" tabindex="-1" @click.prevent="go(g)" :href="`/othello/${g.id}`">
- <mk-avatar class="avatar" :user="g.user1.avatarUrl"/>
- <mk-avatar class="avatar" :user="g.user2.avatarUrl"/>
+ <mk-avatar class="avatar" :user="g.user1"/>
+ <mk-avatar class="avatar" :user="g.user2"/>
<span><b>{{ g.user1.name }}</b> vs <b>{{ g.user2.name }}</b></span>
<span class="state">{{ g.isEnded ? '終了' : '進行中' }}</span>
</a>
@@ -49,8 +49,8 @@
<section v-if="games.length > 0">
<h2>みんなの対局</h2>
<a class="game" v-for="g in games" tabindex="-1" @click.prevent="go(g)" :href="`/othello/${g.id}`">
- <mk-avatar class="avatar" :user="g.user1.avatarUrl"/>
- <mk-avatar class="avatar" :user="g.user2.avatarUrl"/>
+ <mk-avatar class="avatar" :user="g.user1"/>
+ <mk-avatar class="avatar" :user="g.user2"/>
<span><b>{{ g.user1.name }}</b> vs <b>{{ g.user2.name }}</b></span>
<span class="state">{{ g.isEnded ? '終了' : '進行中' }}</span>
</a>