mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-16 10:53:31 +00:00
fix the select cell for tags and glossay in bulk action (#21028)
(cherry picked from commit 56d4732da8d2067159e7083e401bd4d94d3a3a61)
This commit is contained in:
parent
6f6d0760f5
commit
8b1e526e0f
@ -16,3 +16,15 @@
|
|||||||
padding-right: 84px;
|
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;
|
||||||
|
}
|
||||||
|
|||||||
@ -148,7 +148,10 @@ class CSVUtilsClassBase {
|
|||||||
return (
|
return (
|
||||||
<InlineEdit onCancel={props.onCancel} onSave={props.onComplete}>
|
<InlineEdit onCancel={props.onCancel} onSave={props.onComplete}>
|
||||||
<TagSuggestion
|
<TagSuggestion
|
||||||
selectProps={{ className: 'w-48', size: 'small', style: {} }}
|
selectProps={{
|
||||||
|
className: 'react-grid-select-dropdown',
|
||||||
|
size: 'small',
|
||||||
|
}}
|
||||||
value={tags}
|
value={tags}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user