Merge pull request #5860 from samhh/always-render-ignored-users
Render ignored users setting regardless of if there are anypull/21833/head
						commit
						3890bec8ad
					
				| 
						 | 
				
			
			@ -255,10 +255,9 @@ export default class SecurityUserSettingsTab extends React.Component {
 | 
			
		|||
    _renderIgnoredUsers() {
 | 
			
		||||
        const {waitingUnignored, ignoredUserIds} = this.state;
 | 
			
		||||
 | 
			
		||||
        if (!ignoredUserIds || ignoredUserIds.length === 0) return null;
 | 
			
		||||
 | 
			
		||||
        const userIds = ignoredUserIds
 | 
			
		||||
            .map((u) => <IgnoredUser
 | 
			
		||||
        const userIds = !ignoredUserIds?.length
 | 
			
		||||
            ? _t('You have no ignored users.')
 | 
			
		||||
            : ignoredUserIds.map((u) => <IgnoredUser
 | 
			
		||||
             userId={u}
 | 
			
		||||
             onUnignored={this._onUserUnignored}
 | 
			
		||||
             key={u}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1307,6 +1307,7 @@
 | 
			
		|||
    "Cryptography": "Cryptography",
 | 
			
		||||
    "Session ID:": "Session ID:",
 | 
			
		||||
    "Session key:": "Session key:",
 | 
			
		||||
    "You have no ignored users.": "You have no ignored users.",
 | 
			
		||||
    "Bulk options": "Bulk options",
 | 
			
		||||
    "Accept all %(invitedRooms)s invites": "Accept all %(invitedRooms)s invites",
 | 
			
		||||
    "Reject all %(invitedRooms)s invites": "Reject all %(invitedRooms)s invites",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue