fix the select cell for tags and glossay in bulk action (#21028)

(cherry picked from commit 56d4732da8d2067159e7083e401bd4d94d3a3a61)
This commit is contained in:
Ashish Gupta 2025-04-29 20:08:09 +05:30
parent 6f6d0760f5
commit 8b1e526e0f
2 changed files with 16 additions and 1 deletions

View File

@ -16,3 +16,15 @@
padding-right: 84px;
}
}
.react-grid-select-dropdown {
width: 100%;
min-width: 12rem;
}
// Custom styles for ReactDataGrid to avoid the issue of the row height
.InovuaReactDataGrid__row,
.InovuaReactDataGrid__cell {
min-height: 40px !important;
height: auto !important;
}

View File

@ -148,7 +148,10 @@ class CSVUtilsClassBase {
return (
<InlineEdit onCancel={props.onCancel} onSave={props.onComplete}>
<TagSuggestion
selectProps={{ className: 'w-48', size: 'small', style: {} }}
selectProps={{
className: 'react-grid-select-dropdown',
size: 'small',
}}
value={tags}
onChange={handleChange}
/>