Render ignored users setting regardless of if there are any
Signed-off-by: Sam A. Horvath-Hunt <hello@samhh.com>
This commit is contained in:
parent
ae5b6ef831
commit
14b8b0f8da
2 changed files with 4 additions and 4 deletions
|
@ -255,10 +255,9 @@ export default class SecurityUserSettingsTab extends React.Component {
|
||||||
_renderIgnoredUsers() {
|
_renderIgnoredUsers() {
|
||||||
const {waitingUnignored, ignoredUserIds} = this.state;
|
const {waitingUnignored, ignoredUserIds} = this.state;
|
||||||
|
|
||||||
if (!ignoredUserIds || ignoredUserIds.length === 0) return null;
|
const userIds = !ignoredUserIds?.length
|
||||||
|
? _t('You have no ignored users.')
|
||||||
const userIds = ignoredUserIds
|
: ignoredUserIds.map((u) => <IgnoredUser
|
||||||
.map((u) => <IgnoredUser
|
|
||||||
userId={u}
|
userId={u}
|
||||||
onUnignored={this._onUserUnignored}
|
onUnignored={this._onUserUnignored}
|
||||||
key={u}
|
key={u}
|
||||||
|
|
|
@ -1305,6 +1305,7 @@
|
||||||
"Cryptography": "Cryptography",
|
"Cryptography": "Cryptography",
|
||||||
"Session ID:": "Session ID:",
|
"Session ID:": "Session ID:",
|
||||||
"Session key:": "Session key:",
|
"Session key:": "Session key:",
|
||||||
|
"You have no ignored users.": "You have no ignored users.",
|
||||||
"Bulk options": "Bulk options",
|
"Bulk options": "Bulk options",
|
||||||
"Accept all %(invitedRooms)s invites": "Accept all %(invitedRooms)s invites",
|
"Accept all %(invitedRooms)s invites": "Accept all %(invitedRooms)s invites",
|
||||||
"Reject all %(invitedRooms)s invites": "Reject all %(invitedRooms)s invites",
|
"Reject all %(invitedRooms)s invites": "Reject all %(invitedRooms)s invites",
|
||||||
|
|
Loading…
Reference in a new issue