mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-19 08:16:37 +00:00
Fixed accessibility issue
This commit is contained in:
@@ -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>
|
||||
)
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user