mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-22 07:29:08 +00:00
fix: conflict between swatch picker and swatch elements
This commit is contained in:
committed by
Alex Christoffer Rasmussen
parent
81e00993f2
commit
ccf1ddf2fd
@@ -1,3 +1,4 @@
|
|||||||
|
import { MouseEvent } from 'react';
|
||||||
import { IoBan } from 'react-icons/io5';
|
import { IoBan } from 'react-icons/io5';
|
||||||
|
|
||||||
import { cx } from '../../../utils/styleUtils';
|
import { cx } from '../../../utils/styleUtils';
|
||||||
@@ -10,12 +11,13 @@ interface SwatchProps {
|
|||||||
isSelected?: boolean;
|
isSelected?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Swatch(props: SwatchProps) {
|
export default function Swatch({ color, isSelected, onClick }: SwatchProps) {
|
||||||
const { color, isSelected, onClick } = props;
|
const handleClick = (event: MouseEvent) => {
|
||||||
|
|
||||||
const handleClick = () => {
|
|
||||||
onClick?.(color);
|
onClick?.(color);
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
};
|
};
|
||||||
|
|
||||||
const classes = cx([style.swatch, isSelected && style.selected, onClick && style.selectable]);
|
const classes = cx([style.swatch, isSelected && style.selected, onClick && style.selectable]);
|
||||||
|
|
||||||
if (!color) {
|
if (!color) {
|
||||||
|
|||||||
Reference in New Issue
Block a user