Skip to content

Commit

Permalink
Fix #6854: chore: Fix panel style in DropdownBase.js (#6856)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekl0w authored Jul 9, 2024
1 parent 129d633 commit 0ad8ab9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/lib/dropdown/DropdownBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ const styles = `

const inlineStyles = {
wrapper: ({ props }) => ({ maxHeight: props.scrollHeight || 'auto' }),
panel: ({ props }) => {
props.panelStyle;
}
panel: ({ props }) => ({
...props.panelStyle
})
};

export const DropdownBase = ComponentBase.extend({
Expand Down

0 comments on commit 0ad8ab9

Please sign in to comment.