Skip to content

Commit 6843466

Browse files
committed
Fix primefaces#6854: chore: Fix panel style in DropdownBase.js
1 parent 9163fd0 commit 6843466

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/lib/dropdown/DropdownBase.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ const styles = `
150150

151151
const inlineStyles = {
152152
wrapper: ({ props }) => ({ maxHeight: props.scrollHeight || 'auto' }),
153-
panel: ({ props }) => {
154-
props.panelStyle;
155-
}
153+
panel: ({ props }) => ({
154+
...props.panelStyle
155+
})
156156
};
157157

158158
export const DropdownBase = ComponentBase.extend({

0 commit comments

Comments
 (0)