From 88e096c5d43467e1cf089f3e0ad52e79ef7e60a0 Mon Sep 17 00:00:00 2001 From: HerrHase Date: Tue, 11 Mar 2025 10:35:31 +0100 Subject: [PATCH] bugfix missing update --- package.json | 2 +- src/mixin.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ce22f9e..2c9e4c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tiny-components/datepicker", - "version": "0.3.1", + "version": "0.3.2", "description": "Datepicker for Desktop and Mobile", "repository": { "type": "git", diff --git a/src/mixin.js b/src/mixin.js index 448e2ea..381ae6c 100644 --- a/src/mixin.js +++ b/src/mixin.js @@ -68,6 +68,7 @@ export default { store.on('update-props', (data) => { this.state.date = dayjs(this.props.date) + this.update() }) this.createWeeksAndDays()