From 7a353d06786cf1a348bb55478029a8580b33b43f Mon Sep 17 00:00:00 2001 From: les Date: Tue, 21 Jan 2020 00:39:05 +0100 Subject: [PATCH] fix minor color issue on calendar --- components/Calendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Calendar.vue b/components/Calendar.vue index cb2bfc96..b0aa33fc 100644 --- a/components/Calendar.vue +++ b/components/Calendar.vue @@ -45,7 +45,7 @@ export default { // TODO: could be better attributes () { - const colors = ['green', 'orange', 'yellow', 'teal', 'indigo', 'blue', 'red', 'purple', 'pink', 'grey'] + const colors = ['green', 'orange', 'yellow', 'teal', 'indigo', 'blue', 'red', 'purple', 'pink', 'gray'] const tags = take(this.tags, 10).map(t => t.tag) let attributes = [] attributes.push({ key: 'today', dates: new Date(), highlight: { color: 'green' } })