Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit ebffc77

Browse files
Merge branch 'issue128' into develop
2 parents 28377e5 + 9a786af commit ebffc77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/tag/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ export default function Tag({
6464
}, [text, selected]);
6565

6666
return (
67-
<button className={mainStyle} onClick={onClickAction}>
67+
<button className={mainStyle} title={text} onClick={onClickAction}>
6868
{text ? (
6969
<div className={styles.tagContent}>
70-
{text && <span title={text}>{text}</span>}
70+
{text && <span>{text}</span>}
7171
{icon && <TagButton icon={icon} />}
7272
</div>
7373
) : (

0 commit comments

Comments
 (0)