Skip to content

Commit f0f58b5

Browse files
authored
fix: color not showing on entities (#453)
1 parent e32a803 commit f0f58b5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/atomic-calendar-revive.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "atomic-calendar-revive",
3-
"version": "4.4.1",
3+
"version": "4.4.2",
44
"editor_version": "1.6.0",
55
"description": "Calendar Card for Home Assistant",
66
"main": "atomic-calendar-revive.js",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ class AtomicCalendarRevive extends LitElement {
11771177
const calendarWhitelist = typeof calendarUrlList[i][3] != 'undefined' ? calendarUrlList[i][3] : '';
11781178
const calendarLocationWhitelist = typeof calendarUrlList[i][4] != 'undefined' ? calendarUrlList[i][4] : '';
11791179
const calendarColor =
1180-
typeof calendarUrlList[i][4] != 'undefined' ? calendarUrlList[i][4] : this._config.defaultCalColor;
1180+
typeof calendarUrlList[i][5] != 'undefined' ? calendarUrlList[i][5] : this._config.defaultCalColor;
11811181

11821182
eventsArray.map((event) => {
11831183
event['startTime'] = event.start.dateTime

tracker.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"atomic-calendar-revive": {
3-
"updated_at": "2021-06-11",
4-
"version": "4.3.0",
3+
"updated_at": "2021-06-27",
4+
"version": "4.4.2",
55
"remote_location": "https://github.com/marksie1988/atomic-calendar-revive/releases/latest/dist/atomic-calendar-revive.js",
66
"visit_repo": "https://github.com/marksie1988/atomic-calendar-revive",
77
"changelog": "https://github.com/marksie1988/atomic-calendar-revive/releases/latest"

0 commit comments

Comments
 (0)