mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 15:04:50 +01:00
FIX: Icon was not visible on menus
This commit is contained in:
parent
51f449c53e
commit
23c0a2ba55
1 changed files with 1 additions and 0 deletions
|
@ -46,6 +46,7 @@ const ToolTipMenu = React.memo((props: ToolTipMenuProps, ref?: Ref<any>) => {
|
||||||
return {
|
return {
|
||||||
id: action.id.toString(),
|
id: action.id.toString(),
|
||||||
title: action.text,
|
title: action.text,
|
||||||
|
image: action.icon?.iconValue ? action.icon.iconValue : undefined,
|
||||||
state: action.menuState === undefined ? undefined : ((action.menuState ? 'on' : 'off') as MenuState),
|
state: action.menuState === undefined ? undefined : ((action.menuState ? 'on' : 'off') as MenuState),
|
||||||
attributes: { disabled: action.disabled },
|
attributes: { disabled: action.disabled },
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue