mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 23:07:26 +03:00
Fixed accessibility issue
This commit is contained in:
parent
96adb227d9
commit
84d012d7af
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ export default function TagsSelector({ tags, onChange, placeholder, colorGenerat
|
|||
return (
|
||||
<span key={key} style={{ backgroundColor: colorGenerator.getColorForKey(tag) }} {...other}>
|
||||
{getTagDisplayValue(tag)}
|
||||
{!disabled && <a className={classNameRemove} onClick={() => onRemove(key)} />}
|
||||
{!disabled && <a className={classNameRemove} onClick={() => onRemove(key)}> </a>}
|
||||
</span>
|
||||
)
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue