Skip to content

Commit

Permalink
fix: support customized defined classname
Browse files Browse the repository at this point in the history
  • Loading branch information
YLui committed Jun 13, 2024
1 parent 4343f79 commit 3d3f203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/gridPopoverEdit/GridPopoverEditDropDown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const GridPopoverEditDropDown = <TData extends GridBaseRow, TValue = any>
...props,
editorParams: {
// Defaults to large size container
className: "GridPopoverEditDropDown-containerLarge",
...(props.editorParams as GridFormDropDownProps<TData>),
className: `GridPopoverEditDropDown-containerLarge ${props.editorParams?.className ?? ""}`,
},
});

0 comments on commit 3d3f203

Please sign in to comment.