Skip to content

Commit

Permalink
Merge pull request #1232 from solaris-games/fix/custom-colours-intel
Browse files Browse the repository at this point in the history
Fix colour of player filter icons on intel page
  • Loading branch information
SpacialCircumstances authored Nov 18, 2024
2 parents 54eab5d + b266cd7 commit 910e6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/views/game/components/intel/Intel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default {
alias: p.alias,
shape: p.shape,
defeated: p.defeated,
colour: isCurrentPlayer ? '#FFFFFF' : GameHelper.getFriendlyColour(p.colour.value)
colour: isCurrentPlayer ? '#FFFFFF' : this.$store.getters.getColourForPlayer(p._id).value
}
})
Expand Down

0 comments on commit 910e6f7

Please sign in to comment.