From 3ff80e6259fd14f8defa8829391c788c71c0d037 Mon Sep 17 00:00:00 2001 From: Karan Singh Thakur Date: Wed, 11 Jan 2023 17:57:03 +0530 Subject: [PATCH] feat: updated notification title (#443) Signed-off-by: Karan Singh Thakur Signed-off-by: Karan Singh Thakur --- flint.ui/src/components/Datepicker/DatepickerPoint.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flint.ui/src/components/Datepicker/DatepickerPoint.vue b/flint.ui/src/components/Datepicker/DatepickerPoint.vue index 17fbab73..0691ea4b 100644 --- a/flint.ui/src/components/Datepicker/DatepickerPoint.vue +++ b/flint.ui/src/components/Datepicker/DatepickerPoint.vue @@ -65,7 +65,7 @@ export default { if (date_diff.value < 0) { useToast({ type: 'error', - title: 'Error', + title: 'Invalid Start Date', message: 'Start date should be lesser than end date', time: 5000 }) @@ -83,7 +83,7 @@ export default { if (date_diff.value < 0) { useToast({ type: 'error', - title: 'Error', + title: 'Invalid End Date', message: 'End date should be greater than start date.', time: 5000 })