Bump version
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m18s

This commit is contained in:
2024-06-04 16:35:42 -04:00
parent 947b463fe2
commit 27b15a37f7
2 changed files with 3 additions and 11 deletions

View File

@@ -256,11 +256,7 @@ function deleteBlock(block: Interval) {
function onDragEnter(e: DragEvent, type: string) {
if (type === 'day' || type === 'head-day') {
e.preventDefault();
if (
e.target instanceof HTMLDivElement &&
(e.target.classList.contains('q-calendar-scheduler__head--day') ||
e.target.classList.contains('q-calendar-scheduler__day'))
)
if (e.target instanceof HTMLDivElement)
e.target.classList.add('bg-secondary');
}
}
@@ -274,11 +270,7 @@ function onDragOver(e: DragEvent, type: string) {
function onDragLeave(e: DragEvent, type: string) {
if (type === 'day' || type === 'head-day') {
e.preventDefault();
if (
e.target instanceof HTMLDivElement &&
(e.target.classList.contains('q-calendar-scheduler__head--day') ||
e.target.classList.contains('q-calendar-scheduler__day'))
)
if (e.target instanceof HTMLDivElement)
e.target.classList.remove('bg-secondary');
}
}