From 67b694c6976243bdb0ac6cbca488530ca9500812 Mon Sep 17 00:00:00 2001 From: Kartik sharma Date: Sat, 28 Jun 2025 15:06:54 +0530 Subject: [PATCH 1/5] =?UTF-8?q?"Search=20field=20height=20mismatch=20in=20?= =?UTF-8?q?Directory=20=E2=80=93=20should=20match=20Card=20and=20List=20vi?= =?UTF-8?q?ew=20height"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Directory/DirectoryPageHeader.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Directory/DirectoryPageHeader.jsx b/src/pages/Directory/DirectoryPageHeader.jsx index 015b5d1b..6f4270a8 100644 --- a/src/pages/Directory/DirectoryPageHeader.jsx +++ b/src/pages/Directory/DirectoryPageHeader.jsx @@ -284,7 +284,7 @@ const DirectoryPageHeader = ({ placeholder={viewType === "notes" ? "Search Notes..." : "Search Contact..."} value={searchText} onChange={(e) => setSearchText(e.target.value)} - style={{ width: "200px" }} + style={{ width: "200px",height: "30px" }} /> {/* Filter by funnel icon for Notes view */} From 48d1592b8ceb8a34e242146f4493043d938414f0 Mon Sep 17 00:00:00 2001 From: Kartik sharma Date: Sat, 28 Jun 2025 16:44:26 +0530 Subject: [PATCH 2/5] =?UTF-8?q?"Directory=20filter=20popup=20closes=20on?= =?UTF-8?q?=20'Clear'=20button=20click=20=E2=80=93=20it=20should=20remain?= =?UTF-8?q?=20open"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Directory/DirectoryPageHeader.jsx | 36 +++++++++++++++------ 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/src/pages/Directory/DirectoryPageHeader.jsx b/src/pages/Directory/DirectoryPageHeader.jsx index 6f4270a8..b23e8a34 100644 --- a/src/pages/Directory/DirectoryPageHeader.jsx +++ b/src/pages/Directory/DirectoryPageHeader.jsx @@ -289,14 +289,13 @@ const DirectoryPageHeader = ({ {/* Filter by funnel icon for Notes view */} {viewType === "notes" && ( -
{/* Added minWidth here */} +
- {/* Divider */} - {/*
*/} - {/* Organization */}

Organization

@@ -356,7 +352,8 @@ const DirectoryPageHeader = ({
-
@@ -457,13 +459,27 @@ const DirectoryPageHeader = ({
- - + +
)} -
From da69ae6fec4734ab623732d7782c2be7f8241bc2 Mon Sep 17 00:00:00 2001 From: Kartik sharma Date: Mon, 30 Jun 2025 11:22:22 +0530 Subject: [PATCH 3/5] "In the Directory Notes, applying a filter changes the Clear button's state and color." --- src/pages/Directory/DirectoryPageHeader.jsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/Directory/DirectoryPageHeader.jsx b/src/pages/Directory/DirectoryPageHeader.jsx index b23e8a34..48e28f28 100644 --- a/src/pages/Directory/DirectoryPageHeader.jsx +++ b/src/pages/Directory/DirectoryPageHeader.jsx @@ -349,11 +349,11 @@ const DirectoryPageHeader = ({
{/* Buttons */} -
+
+
+ {/* Previous Button */} + - {[...Array(totalPages)].map((_, i) => { - const page = i + 1; - return ( - - ); - })} + {/* Page Number Buttons */} + {[...Array(totalPages)].map((_, i) => { + const page = i + 1; + return ( + + ); + })} - -
+ {/* Next Button */} +
)}
From 111325968dd7d75b99863c6f0b07abe4e0bd05dd Mon Sep 17 00:00:00 2001 From: Kartik sharma Date: Mon, 30 Jun 2025 11:32:36 +0530 Subject: [PATCH 5/5] "Adding margin-bottom to the pagination section in Directory Notes." --- src/components/Directory/NotesCardViewDirectory.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Directory/NotesCardViewDirectory.jsx b/src/components/Directory/NotesCardViewDirectory.jsx index 75a16b06..d29354d7 100644 --- a/src/components/Directory/NotesCardViewDirectory.jsx +++ b/src/components/Directory/NotesCardViewDirectory.jsx @@ -130,7 +130,7 @@ const NotesCardViewDirectory = ({ notes, setNotesForFilter, searchText, filterAp {/* Pagination */} {totalPages > 1 && (
+ style={{ marginBottom: '70px' }}> {/* Previous Button */}