We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b96c5be commit 76d9843Copy full SHA for 76d9843
.github/workflows/deploy-docs.yml
@@ -1,4 +1,4 @@
1
-name: Deploy docs
+name: Deploy Docs
2
on:
3
workflow_dispatch: {}
4
push:
src/components/Week.vue
@@ -265,7 +265,12 @@ function onMouseUp() {
265
}
266
267
if (activeEvent && !creatingEvent) {
268
- emits("event-updated", activeEvent);
+ if (
269
+ activeEvent.startDate != initialState?.startDate ||
270
+ activeEvent.endDate != initialState?.endDate
271
+ ) {
272
+ emits("event-updated", activeEvent);
273
+ }
274
275
276
isDragging = false;
0 commit comments