added mirgin form bottom for select badge

This commit is contained in:
Pramod Mahajan 2025-05-27 15:02:42 +05:30
parent 8786f01b40
commit 866049e385

View File

@ -60,7 +60,7 @@ const SelectMultiple = ({
selectedValues.map((val) => {
const found = options.find((opt) => opt[valueKey] === val);
return (
<span key={val} className="badge badge-selected-item mx-1">
<span key={val} className="badge badge-selected-item mx-1 mb-1">
{found ? found[labelKey] : ''}
</span>
);