mirror of
https://github.com/Redocly/redoc.git
synced 2025-08-05 21:00:18 +03:00
fix: remove unused className
This commit is contained in:
parent
bcf4d4fde9
commit
a4fb5bfb4f
|
@ -46,7 +46,7 @@ const DropdownComponent = (props: DropdownProps): JSX.Element => {
|
|||
};
|
||||
|
||||
return (
|
||||
<div className={className + ' dropdown-wrapper'}>
|
||||
<div className={className}>
|
||||
<ArrowIcon variant={variant} />
|
||||
<select onChange={handleOnChange} value={value} className="dropdown-select">
|
||||
{placeholder && (
|
||||
|
@ -55,7 +55,7 @@ const DropdownComponent = (props: DropdownProps): JSX.Element => {
|
|||
</option>
|
||||
)}
|
||||
{options.map(({ idx, value, title }: DropdownOption, index) => (
|
||||
<option key={idx || value + index} value={value} className="dropdown-option">
|
||||
<option key={idx || value + index} value={value}>
|
||||
{title || value}
|
||||
</option>
|
||||
))}
|
||||
|
|
Loading…
Reference in New Issue
Block a user