Skip to content

Commit

Permalink
[refactoring] Minor code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
g3force committed Mar 2, 2019
1 parent 58ab152 commit 3c26877
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
backend:
docker:
- image: circleci/golang:1.10

working_directory: /go/src/github.com/RoboCup-SSL/ssl-game-controller
steps:
- checkout
Expand Down
4 changes: 3 additions & 1 deletion src/components/common/EditableLabelDuration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
size="5"
ref="input"
/>
<a class="btn-edit" v-on:click="edit()" v-show="!g.edit"><font-awesome-icon icon="edit"/></a>
<a class="btn-edit" v-on:click="edit()" v-show="!g.edit">
<font-awesome-icon icon="edit"/>
</a>
</span>
</template>

Expand Down
2 changes: 1 addition & 1 deletion src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default new Vuex.Store({
SOCKET_ONERROR() {
},
SOCKET_ONMESSAGE(state, message) {
if (message.state != null) {
if (message.state) {
state.refBoxState = message.state;
}
if (message.gameEvents) {
Expand Down

0 comments on commit 3c26877

Please sign in to comment.