diff --git a/src/components/Card.vue b/src/components/Card.vue index 759a5dc..c92f69c 100644 --- a/src/components/Card.vue +++ b/src/components/Card.vue @@ -8,7 +8,7 @@ export default { props: ['card'], computed: { isRed: function () { - return this.card.shape == "DIMONDS" || this.card.shape === "HEARTS"; + return this.card.shape == "DIAMONDS" || this.card.shape === "HEARTS"; } } }