Skip to content

Commit

Permalink
fix(Popover): pass classname to html content (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiraind authored Oct 27, 2023
1 parent 6fb82bd commit c0a725a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Popover/components/Content/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const Content = ({secondary, htmlContent, content, className}: ContentPro
if (htmlContent) {
return (
<div
className={cnPopover('tooltip-content', {secondary})}
className={cnPopover('tooltip-content', {secondary}, className)}
dangerouslySetInnerHTML={{
__html: htmlContent,
}}
Expand Down

0 comments on commit c0a725a

Please sign in to comment.