Add missing icon to account menu
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
43fe27eecc
commit
adfde143bd
|
@ -177,7 +177,11 @@ class Header extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ('share' in navigator) {
|
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);
|
menu.push(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue