mirror of
https://github.com/zoriya/flood.git
synced 2026-06-07 20:30:42 +00:00
CountryFlagIcon: display country code on hover
This commit is contained in:
@@ -41,7 +41,7 @@ const CountryFlagIcon: FC<CountryFlagIconProps> = ({countryCode}: CountryFlagIco
|
||||
if (flag == null) {
|
||||
return null;
|
||||
}
|
||||
return <img alt={countryCode} className="peers-list__flag__image" src={flag} />;
|
||||
return <img alt={countryCode} title={countryCode} className="peers-list__flag__image" src={flag} />;
|
||||
};
|
||||
|
||||
export default CountryFlagIcon;
|
||||
|
||||
Reference in New Issue
Block a user