Bump version
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m18s
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m18s
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<q-toolbar-title>{{ pageTitle }}</q-toolbar-title>
|
<q-toolbar-title>{{ pageTitle }}</q-toolbar-title>
|
||||||
<q-space />
|
<q-space />
|
||||||
<div>v2024.6.3.2</div>
|
<div>v2024.6.4.1</div>
|
||||||
</q-toolbar>
|
</q-toolbar>
|
||||||
</q-header>
|
</q-header>
|
||||||
<LeftDrawer
|
<LeftDrawer
|
||||||
|
|||||||
@@ -256,11 +256,7 @@ function deleteBlock(block: Interval) {
|
|||||||
function onDragEnter(e: DragEvent, type: string) {
|
function onDragEnter(e: DragEvent, type: string) {
|
||||||
if (type === 'day' || type === 'head-day') {
|
if (type === 'day' || type === 'head-day') {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (
|
if (e.target instanceof HTMLDivElement)
|
||||||
e.target instanceof HTMLDivElement &&
|
|
||||||
(e.target.classList.contains('q-calendar-scheduler__head--day') ||
|
|
||||||
e.target.classList.contains('q-calendar-scheduler__day'))
|
|
||||||
)
|
|
||||||
e.target.classList.add('bg-secondary');
|
e.target.classList.add('bg-secondary');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -274,11 +270,7 @@ function onDragOver(e: DragEvent, type: string) {
|
|||||||
function onDragLeave(e: DragEvent, type: string) {
|
function onDragLeave(e: DragEvent, type: string) {
|
||||||
if (type === 'day' || type === 'head-day') {
|
if (type === 'day' || type === 'head-day') {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (
|
if (e.target instanceof HTMLDivElement)
|
||||||
e.target instanceof HTMLDivElement &&
|
|
||||||
(e.target.classList.contains('q-calendar-scheduler__head--day') ||
|
|
||||||
e.target.classList.contains('q-calendar-scheduler__day'))
|
|
||||||
)
|
|
||||||
e.target.classList.remove('bg-secondary');
|
e.target.classList.remove('bg-secondary');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user