Problems: deactivate tooltip with hint for tags

This commit is contained in:
Alexander Zobnin
2022-11-30 12:17:46 +01:00
parent 9b2079c1da
commit 8aebc649db

View File

@@ -109,7 +109,8 @@ export default class EventTag extends PureComponent<EventTagProps> {
borderColor: tagColor.borderColor, borderColor: tagColor.borderColor,
}; };
return ( return (
<Tooltip placement="bottom" content="Click to add tag filter or Ctrl/Shift+click to remove"> // TODO: show tooltip when click feature is fixed
// <Tooltip placement="bottom" content="Click to add tag filter or Ctrl/Shift+click to remove">
<span <span
className={`label label-tag zbx-tag ${highlight ? 'highlighted' : ''}`} className={`label label-tag zbx-tag ${highlight ? 'highlighted' : ''}`}
style={style} style={style}
@@ -117,7 +118,7 @@ export default class EventTag extends PureComponent<EventTagProps> {
> >
{tag.value ? `${tag.tag}: ${tag.value}` : `${tag.tag}`} {tag.value ? `${tag.tag}: ${tag.value}` : `${tag.tag}`}
</span> </span>
</Tooltip> // </Tooltip>
); );
} }
} }