aboutsummaryrefslogtreecommitdiff
path: root/client/src/Client.elm
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/Client.elm')
-rw-r--r--client/src/Client.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/Client.elm b/client/src/Client.elm
index f15952e..7a6f333 100644
--- a/client/src/Client.elm
+++ b/client/src/Client.elm
@@ -122,7 +122,7 @@ viewTable game = case game.view.table of
] ++
List.indexedMap (\i proposal ->
let attrs =
- if i == myProposal then
+ if Just i == myProposal then
[Html.Attributes.class "mine"]
else if Just i == myVote || Just i == game.selectedVote then
[Html.Attributes.class "voted"]