We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a54f4e6 commit 655df35Copy full SHA for 655df35
src/Shared/Components/SelectPicker/common.tsx
@@ -258,9 +258,10 @@ const SelectPickerMenuListFooter = ({
258
const { value } = menuListFooterConfig
259
260
return (
261
- <div className="flex left dc__gap-6 p-8">
+ <div className="flexbox dc__gap-6 p-8">
262
<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>
+ {/* 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>
265
</div>
266
)
267
}
0 commit comments