add right click context menu on tagInputItem (#821)
This commit is contained in:
Родитель
6b4b6f6741
Коммит
ae4ce9a122
|
@ -130,6 +130,12 @@ export default class TagInputItem extends React.Component<ITagInputItemProps, IT
|
|||
this.props.onClick(this.props.tag, {clickedDropDown});
|
||||
}
|
||||
|
||||
private handleContextMenu = (e: MouseEvent<HTMLDivElement, globalThis.MouseEvent>) => {
|
||||
e.preventDefault();
|
||||
const clickedDropDown = true;
|
||||
this.props.onClick(this.props.tag, {clickedDropDown});
|
||||
}
|
||||
|
||||
private onColorClick = (e: MouseEvent) => {
|
||||
e.stopPropagation();
|
||||
|
||||
|
@ -171,6 +177,7 @@ export default class TagInputItem extends React.Component<ITagInputItemProps, IT
|
|||
const spanValue = this.inputElement?.value ?? "";
|
||||
return (
|
||||
<div className={"tag-name-container"}
|
||||
onContextMenu={this.handleContextMenu}
|
||||
onMouseEnter={this.handleMouseEnter}
|
||||
onMouseLeave={this.handleMouseLeave}>
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче