From 9943dfc4c9137490d2e9e64b3a90e45c9be5b5ca Mon Sep 17 00:00:00 2001 From: aminecmi Date: Sat, 30 Oct 2021 20:25:06 +0200 Subject: [PATCH] Fixed typo. --- src/components/Card.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } } }