Skip to content

Commit 3fa6200

Browse files
authored
Merge pull request #25 from marksie1988/dev
v0.11.2
2 parents 6dbe19f + 0ffad31 commit 3fa6200

File tree

4 files changed

+53
-20
lines changed

4 files changed

+53
-20
lines changed

app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class AtomicCalendar extends LitElement {
3636
render() {
3737
if(this.firstrun){
3838
console.info(
39-
"%c atomic_calendar_revive %c v0.11.0 ",
39+
"%c atomic_calendar_revive %c v0.11.2 ",
4040
"color: white; background: coral; font-weight: 700;",
4141
"color: coral; background: white; font-weight: 700;"
4242
);
@@ -514,7 +514,7 @@ class AtomicCalendar extends LitElement {
514514
//if (this.config.showColors && typeof event.config.titleColor != 'undefined') titleColor=event.config.titleColor
515515
const titleColor = (this.config.showColors && typeof event.config.titleColor != 'undefined') ? event.config.titleColor : this.config.titleColor
516516
//const eventIcon = isEventNext ? html`<ha-icon class="nextEventIcon" icon="mdi:arrow-right-bold"></ha-icon>` : ``
517-
if (this.config.disableEventLink) return html `
517+
if (this.config.disableEventLink || (event.link === null)) return html `
518518
<div class="event-title" style="font-size: ${this.config.titleSize}%;color: ${titleColor}">${titletext}</div>
519519
`
520520
else return html `

atomic_calendar.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 47 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"webpack-merge": "^4.2.1"
3838
},
3939
"dependencies": {
40+
"@rollup/plugin-node-resolve": "^7.1.1",
4041
"lit-element": "^2.2.1",
4142
"moment": "^2.24.0",
4243
"node-google-calendar": "^1.1.1"

0 commit comments

Comments
 (0)