Skip to content

Commit

Permalink
feature: Nicer visualization of game event origins
Browse files Browse the repository at this point in the history
  • Loading branch information
g3force committed May 10, 2020
1 parent ad5db39 commit 7795d62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/GameEvents.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
},
autoRefIndicator(gameEvent) {
if(gameEvent.origin == "")
if(gameEvent.origin === "")
{
return "GameController";
} else {
return gameEvent.origin;
return gameEvent.origin.join(', ');
}
}
}
Expand Down Expand Up @@ -77,7 +77,7 @@
padding: 2px;
padding-left: 10px;
}
.more-game-events {
font-size: 2.5vmin;
text-align: center;
Expand Down

0 comments on commit 7795d62

Please sign in to comment.