From 408435c195ea3172140956d5ab14c871922b0341 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sun, 11 Mar 2018 23:50:17 +0900
Subject: [PATCH] Oops

---
 src/web/app/common/views/components/othello.room.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/web/app/common/views/components/othello.room.vue b/src/web/app/common/views/components/othello.room.vue
index bdefcdc49..3b4296d0b 100644
--- a/src/web/app/common/views/components/othello.room.vue
+++ b/src/web/app/common/views/components/othello.room.vue
@@ -19,7 +19,7 @@
 			</div>
 			<div :class="$style.board" v-if="game.settings.map != null" :style="{ 'grid-template-rows': `repeat(${ game.settings.map.length }, 1fr)`, 'grid-template-columns': `repeat(${ game.settings.map[0].length }, 1fr)` }">
 				<div v-for="(x, i) in game.settings.map.join('')"
-					:class="{ none: x == ' ' }"
+					:data-none="x == ' '"
 					@click="onPixelClick(i, x)"
 				>
 					<template v-if="x == 'b'">%fa:circle%</template>
@@ -324,7 +324,7 @@ export default Vue.extend({
 			width 100%
 			height 100%
 
-		&.none
+		&[data-none]
 			border-color transparent
 
 </style>