@acorex/components 3.0.48 → 3.0.50

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.
@@ -1393,8 +1393,8 @@
1393
1393
  }
1394
1394
  };
1395
1395
  AXCalendarBoxComponent.prototype.getTitle = function (date) {
1396
- if (this.dayStyle.find(function (c) { return c.date == date.toISOString().split('T')[0]; })) {
1397
- return this.dayStyle.find(function (c) { return c.date == date.toISOString().split('T')[0]; }).text;
1396
+ if (this.dayStyle.find(function (c) { return c.date.split('T')[0] == date.toISOString().split('T')[0]; })) {
1397
+ return this.dayStyle.find(function (c) { return c.date.split('T')[0] == date.toISOString().split('T')[0]; }).text;
1398
1398
  }
1399
1399
  else {
1400
1400
  return '';