Fixed checkmarks showing in menu all the time
This commit is contained in:
parent
41c64624d9
commit
332a492971
@ -341,11 +341,12 @@ interface SingleMenuItem {
|
|||||||
|
|
||||||
const SingleMenuItem: Component<SingleMenuItem> = ({ option, currentValue, onClick }) => {
|
const SingleMenuItem: Component<SingleMenuItem> = ({ option, currentValue, onClick }) => {
|
||||||
const isSelected = () => currentValue()?.value === option.value;
|
const isSelected = () => currentValue()?.value === option.value;
|
||||||
|
console.log(currentValue()?.value, option.value, isSelected());
|
||||||
return (
|
return (
|
||||||
<button class={ `hover:underline cursor-pointer last:mb-1 flex-row-center` }
|
<button class={ `hover:underline cursor-pointer last:mb-1 flex-row-center` }
|
||||||
onClick={ onClick }>
|
onClick={ onClick }>
|
||||||
<Icon path={ check } aria-label={ isSelected() ? "A checkmark" : "Nothing" }
|
<Icon path={ check } aria-label={ isSelected() ? "A checkmark" : "Nothing" }
|
||||||
class={ `text-white ${ !isSelected() && "text-transparent" }` } />
|
class={ `text-white ${ !isSelected() && "invisible" }` } />
|
||||||
{ option.name }
|
{ option.name }
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user