Add missing icon to account menu
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
43fe27eecc
commit
adfde143bd
1 changed files with 5 additions and 1 deletions
|
@ -177,7 +177,11 @@ class Header extends ImmutablePureComponent {
|
|||
}
|
||||
|
||||
if ('share' in navigator) {
|
||||
menu.push({ text: intl.formatMessage(messages.share, { name: account.get('username') }), action: this.handleShare });
|
||||
menu.push({
|
||||
text: intl.formatMessage(messages.share, { name: account.get('username') }),
|
||||
action: this.handleShare,
|
||||
icon: require('@tabler/icons/icons/share.svg'),
|
||||
});
|
||||
menu.push(null);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue