client/note color picker menu item: fix a typo

This commit is contained in:
Adorian Doran 2025-11-18 01:17:13 +02:00
parent e5ac8a0a67
commit 870fef3ea6

View File

@ -46,7 +46,7 @@ export default function ColorPickerMenuItem(props: ColorPickerMenuItemProps) {
<ColorCell key={color}
color={color}
isSelected={(color === currentColor)}
isDisabled={(note !== null)}
isDisabled={(note === null)}
onClick={() => onColorCellClicked(color)} />
))}
</div>