classcard-ui 0.2.525 → 0.2.526

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "classcard-ui",
3
- "version": "0.2.525",
3
+ "version": "0.2.526",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -258,7 +258,7 @@ export default {
258
258
  },
259
259
  getEventsCountForDate(date) {
260
260
  let eventsCountObj = this.eventsCount.find((event) =>
261
- dayjs(date).isSame(dayjs(event.date))
261
+ dayjs(date).isSame(dayjs(event.date), "day")
262
262
  );
263
263
  if (eventsCountObj) {
264
264
  return eventsCountObj.eventsCount;