Skip to content

Commit 655df35

Browse files
committed
fix: remove truncation on menu list footer
1 parent a54f4e6 commit 655df35

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Shared/Components/SelectPicker/common.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,10 @@ const SelectPickerMenuListFooter = ({
258258
const { value } = menuListFooterConfig
259259

260260
return (
261-
<div className="flex left dc__gap-6 p-8">
261+
<div className="flexbox dc__gap-6 p-8">
262262
<Icon name="ic-info-outline" color="N700" size={16} />
263-
<p className="fs-12 fw-4 lh-16 cn-8 dc__truncate m-0">{value}</p>
263+
{/* Explicitly not adding truncate here since the value would be static */}
264+
<p className="fs-12 fw-4 lh-16 cn-8 dc__word-break m-0">{value}</p>
264265
</div>
265266
)
266267
}

0 commit comments

Comments
 (0)