From 97dabbf7f6b69daaeeb251c6c342e22694fba4d6 Mon Sep 17 00:00:00 2001 From: iamsivin Date: Fri, 7 Nov 2025 21:35:19 +0530 Subject: [PATCH] chore: Minor fix --- .../Pages/CategoryPage/CategoryForm.vue | 2 +- .../components/ContentTemplateSelector.vue | 4 ++-- .../components/WhatsAppOptions.vue | 18 +++++++++++------- .../dashboard/components-next/input/Input.vue | 12 ++++++------ .../phonenumberinput/PhoneNumberInput.vue | 7 +++---- 5 files changed, 23 insertions(+), 20 deletions(-) diff --git a/app/javascript/dashboard/components-next/HelpCenter/Pages/CategoryPage/CategoryForm.vue b/app/javascript/dashboard/components-next/HelpCenter/Pages/CategoryPage/CategoryForm.vue index 5c0316b7d..82ecde39e 100644 --- a/app/javascript/dashboard/components-next/HelpCenter/Pages/CategoryPage/CategoryForm.vue +++ b/app/javascript/dashboard/components-next/HelpCenter/Pages/CategoryPage/CategoryForm.vue @@ -202,7 +202,7 @@ defineExpose({ state, isSubmitDisabled }); size="sm" type="button" :icon="!state.icon ? 'i-lucide-smile-plus' : ''" - class="!h-[2.4rem] !w-[2.375rem] absolute top-[1.94rem] !outline-none !rounded-[0.438rem] border-0 ltr:left-px rtl:right-px ltr:!rounded-r-none rtl:!rounded-l-none" + class="!h-[2.39rem] !w-[2.375rem] absolute top-px !outline-none !rounded-[0.438rem] border-0 ltr:left-px rtl:right-px ltr:!rounded-r-none rtl:!rounded-l-none" @click="isEmojiPickerOpen = !isEmojiPickerOpen" /> { :placeholder=" t('COMPOSE_NEW_CONVERSATION.FORM.TWILIO_OPTIONS.SEARCH_PLACEHOLDER') " - custom-input-class="ltr:pl-10 rtl:pr-10" + class="ltr:!pl-8 rtl:!pr-8" > diff --git a/app/javascript/dashboard/components-next/NewConversation/components/WhatsAppOptions.vue b/app/javascript/dashboard/components-next/NewConversation/components/WhatsAppOptions.vue index e5350c1fb..14dc1c16f 100644 --- a/app/javascript/dashboard/components-next/NewConversation/components/WhatsAppOptions.vue +++ b/app/javascript/dashboard/components-next/NewConversation/components/WhatsAppOptions.vue @@ -4,6 +4,7 @@ import { useI18n } from 'vue-i18n'; import { useMapGetter } from 'dashboard/composables/store'; import Icon from 'dashboard/components-next/icon/Icon.vue'; +import Input from 'dashboard/components-next/input/Input.vue'; import Button from 'dashboard/components-next/button/Button.vue'; import WhatsappTemplate from './WhatsappTemplate.vue'; @@ -77,11 +78,7 @@ const handleSendMessage = template => { class="absolute top-full mt-1.5 max-h-96 overflow-y-auto ltr:left-0 rtl:right-0 flex flex-col gap-2 p-4 items-center w-[21.875rem] h-auto bg-n-solid-2 border border-n-strong shadow-sm rounded-lg" >
- - + class="ltr:!pl-8 rtl:!pr-8" + > + +
!value || ['info', 'error', 'success'].includes(value), }, - min: { type: String, default: '' }, - max: { type: String, default: '' }, + min: { type: [String, Number], default: '' }, + max: { type: [String, Number], default: '' }, autofocus: { type: Boolean, default: false }, }); @@ -128,7 +128,7 @@ onMounted(() => {