Skip to content

Commit 468994f

Browse files
authored
Merge pull request #84 from fbertone/patch-3
fix #83
2 parents 0fd48d7 + 5dacd4d commit 468994f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/angular-material-calendar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ angular.module("materialCalendar").service("MaterialCalendarData", [function ()
172172
};
173173

174174
this.setDayContent = function(date, content) {
175-
this.data[this.getDayKey(date)] = content || this.data[this.getDayKey(date)] || "";
175+
this.data[this.getDayKey(date)] = content || "";
176176
};
177177
}
178178
return new CalendarData();

0 commit comments

Comments
 (0)