@progressive-development/pd-calendar 0.2.2 → 0.2.3
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 +1 -1
- package/src/PdCalendar.js +1 -1
package/package.json
CHANGED
package/src/PdCalendar.js
CHANGED
|
@@ -219,7 +219,7 @@ export class PdCalendar extends LitElement {
|
|
|
219
219
|
|
|
220
220
|
update(changedProperties) {
|
|
221
221
|
// check for month selection (set by remote server if no result available for the first call)
|
|
222
|
-
if (changedProperties.has("data") && this.data.monthSelection) {
|
|
222
|
+
if (changedProperties.has("data") && this.data && this.data.monthSelection) {
|
|
223
223
|
const now = new Date(Date.now());
|
|
224
224
|
const startDateNextMonth = new Date(now.getFullYear(), this.data.monthSelection, 1);
|
|
225
225
|
this._currentMonthNavNr += 1;
|