diff --git a/client/src/app/chat-page.component.html b/client/src/app/chat-page.component.html index 5edc7da..7d986cb 100644 --- a/client/src/app/chat-page.component.html +++ b/client/src/app/chat-page.component.html @@ -70,6 +70,98 @@

{{ connectedUser.displayName }}

+ @if (displayedPeer(); as selectedPeer) { +
+ + + @if (peerDropdownOpen()) { +
+ @for (connectedPeer of session.peers(); track connectedPeer.id) { +
+ + +
+ } +
+ } +
+ }
@@ -107,105 +199,6 @@
- -
@@ -376,8 +369,9 @@ [class.bubble-incoming]="entry.direction === 'incoming'" [class.bubble-outgoing]="entry.direction === 'outgoing'" [class.bubble-system]="entry.direction === 'system'" + [class.bubble-emoji-only]="isEmojiOnlyEntry(entry)" > - @if (entry.direction !== 'system') { + @if (entry.direction !== 'system' && !isEmojiOnlyEntry(entry)) {
@if (isGeneratedImageEntry(entry)) {