mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-27 13:51:36 +01:00
Fixed js type error in advanced_options_dropdown.js
This commit is contained in:
parent
0c7ee5c792
commit
d87d70e89a
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ export default class AdvancedOptionsDropdown extends React.PureComponent {
|
|||
|
||||
const anyEnabled = values.some((enabled) => enabled);
|
||||
const optionElems = options.map((option) => {
|
||||
const active = values.get(option.key) ? 'active' : '';
|
||||
const active = values.get(option.key);
|
||||
return (
|
||||
<div role='button' className='advanced-options-dropdown__option' key={option.key} >
|
||||
<div className='advanced-options-dropdown__option__toggle'>
|
||||
|
|
Loading…
Reference in a new issue