ssb: Consolidated contact message groups a bit too much.
This commit is contained in:
		| @@ -94,7 +94,9 @@ class TfMessageElement extends LitElement { | ||||
| 				return '👎'; | ||||
| 			} else if (expression === 'heart') { | ||||
| 				return '❤️'; | ||||
| 			} else if ((expression ?? '').split('').every((x) => x.charCodeAt(0) < 256)) { | ||||
| 			} else if ( | ||||
| 				(expression ?? '').split('').every((x) => x.charCodeAt(0) < 256) | ||||
| 			) { | ||||
| 				return '👍'; | ||||
| 			} else { | ||||
| 				return expression; | ||||
| @@ -656,13 +658,15 @@ class TfMessageElement extends LitElement { | ||||
| 					<div class="w3-padding"> | ||||
| 						${this.content_group_by_author().map( | ||||
| 							(x) => html` | ||||
| 								<tf-user id=${x.author} .users=${this.users}></tf-user> | ||||
| 								${x.action} | ||||
| 								${x.users.map( | ||||
| 									(y) => html` | ||||
| 										<tf-user id=${y} .users=${this.users}></tf-user> | ||||
| 									` | ||||
| 								)} | ||||
| 								<div> | ||||
| 									<tf-user id=${x.author} .users=${this.users}></tf-user> | ||||
| 									${x.action} | ||||
| 									${x.users.map( | ||||
| 										(y) => html` | ||||
| 											<tf-user id=${y} .users=${this.users}></tf-user> | ||||
| 										` | ||||
| 									)} | ||||
| 								</div> | ||||
| 							` | ||||
| 						)} | ||||
| 					</div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user