Fix being unable to add account notes

This commit is contained in:
Thibaut Girka 2020-07-07 17:24:23 +02:00 committed by ThibG
parent a3ac322ded
commit 170b38c3f4
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class Header extends ImmutablePureComponent {
menu.push(null);
}
if (accountNote === null) {
if (accountNote === null || accountNote === '') {
menu.push({ text: intl.formatMessage(messages.add_account_note, { name: account.get('username') }), action: this.props.onEditAccountNote });
}