Fixed typo.

This commit is contained in:
aminecmi 2021-10-30 20:25:06 +02:00
parent 8e5f822c39
commit 9943dfc4c9

View File

@ -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";
}
}
}