Skip to content

Commit 42b26bf

Browse files
committed
minor fixes
1 parent 7e564a4 commit 42b26bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/src/components/PlayerOreGraph.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
class="bg-white cursor-pointer relative transition-all duration-500 ease-in-out"
2626
@click="isExpanded = !isExpanded"
2727
>
28-
<div class="absolute inset-x-0 top-0 h-10 bg-gray-300 flex">
28+
<div class="absolute inset-x-0 top-0 h-10 bg-cool-gray-300 flex">
2929
<div
3030
v-for="({ore, mined, used, net}) of oreDataFiltered"
3131
:key="ore"

web/src/store/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const store = new Vuex.Store({
2525
},
2626

2727
setPlayer (state, [uuid, data]) {
28-
state.players[uuid] = data
28+
Vue.set(state.players, uuid, data)
2929
},
3030

3131
setPlayerList (state, data) {

0 commit comments

Comments
 (0)