fix(ui): set description value to action button title

This commit is contained in:
Gabe Kangas 2023-06-20 20:23:09 -07:00
parent 7adfb6c211
commit fb5cb10aa2
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -23,6 +23,7 @@ export const ActionButton: FC<ActionButtonProps> = ({
className={cn([`${styles.button}`, 'action-button'])}
onClick={() => externalActionSelected(action)}
style={{ backgroundColor: color }}
title={description || title}
>
{icon && <img src={icon} className={`${styles.icon}`} alt={description} />}
{title}