chore: Review fix

This commit is contained in:
iamsivin
2026-02-22 23:30:00 +05:30
parent 09b22394b6
commit 6f4ad3b81c
2 changed files with 11 additions and 3 deletions
@@ -3,7 +3,7 @@ import { ref } from 'vue';
import Dialog from 'dashboard/components-next/dialog/Dialog.vue';
import DatePicker from 'dashboard/components-next/DatePicker/DatePicker.vue';
const emit = defineEmits(['chooseTime']);
const emit = defineEmits(['chooseTime', 'close']);
const dialogRef = ref(null);
const datePickerRef = ref(null);
@@ -20,6 +20,7 @@ const onClear = () => {
const onDialogClose = () => {
datePickerRef.value?.resetState();
emit('close');
};
const open = () => {