Merge branch 'actions-modal-icons' into 'develop'
Add missing icon to account menu See merge request soapbox-pub/soapbox-fe!855
This commit is contained in:
commit
887da20192
1 changed files with 5 additions and 1 deletions
|
@ -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 a new issue