From 8ff762de3e5f965575bb26285342babf2e0ae2c3 Mon Sep 17 00:00:00 2001 From: Jatin Ranka Date: Tue, 16 Aug 2022 00:48:34 +0530 Subject: [PATCH] Feat: make locations dropdown searchable (#3858) --- apps/web/components/dialog/EditLocationDialog.tsx | 2 +- apps/web/pages/event-types/[type].tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/components/dialog/EditLocationDialog.tsx b/apps/web/components/dialog/EditLocationDialog.tsx index 4028ce5d3d..1a0f635092 100644 --- a/apps/web/components/dialog/EditLocationDialog.tsx +++ b/apps/web/components/dialog/EditLocationDialog.tsx @@ -519,7 +519,7 @@ export const EditLocationDialog = (props: ISetLocationDialog) => { ? locationOptions.filter((location) => location.value !== "phone") : locationOptions } - isSearchable={false} + isSearchable className="my-4 block w-full min-w-0 flex-1 rounded-sm border border-gray-300 text-sm" onChange={(val) => { if (val) { diff --git a/apps/web/pages/event-types/[type].tsx b/apps/web/pages/event-types/[type].tsx index 59131e15ae..6a4fe04d0b 100644 --- a/apps/web/pages/event-types/[type].tsx +++ b/apps/web/pages/event-types/[type].tsx @@ -451,7 +451,7 @@ const EventTypePage = (props: inferSSRProps) => {