Fixed event popover not closing on submit

This was caused by a random stray isLoading
This commit is contained in:
Alexis
2024-12-19 14:01:05 +01:00
parent cd965f61e8
commit c99059d9a8
3 changed files with 4 additions and 8 deletions

View File

@@ -5,8 +5,6 @@ const { eventSkeleton, operationInProgress } = storeToRefs(useCalendar())
const { resetSkeleton } = useCalendar()
const popoverOpen = ref(false)
const isLoading = ref(false)
const props = defineProps<{
date?: RPGDate
btnClass?: string
@@ -38,10 +36,8 @@ function openEventCreatePopover() {
* @param e The closing event (can be keydown or click)
*/
function handleClosing(e: Event) {
if (isLoading.value) {
popoverOpen.value = false
e.preventDefault()
}
popoverOpen.value = false
e.preventDefault()
}
</script>

View File

@@ -2,7 +2,7 @@
import type { Calendar } from "~/models/CalendarConfig";
import { PhAlarm, PhCalendarDots, PhCircleNotch, PhWrench } from "@phosphor-icons/vue";
const defaultSkeleton: Calendar = { name: "", today: { day: 1, month: 0, year: 0 }, months: [], events: []}
const defaultSkeleton: Calendar = { name: "", today: { day: 1, month: 0, year: 0 }, months: [], events: [], state: "draft" }
const calendarSkeleton = ref<Calendar>({ ...defaultSkeleton })
onMounted(() => {

View File

@@ -13,7 +13,7 @@ export interface CalendarConfig {
export interface Calendar extends CalendarConfig {
id?: number
shortId: string
shortId?: string
name: string
events: CalendarEvent[]
state: CalendarState