3.0 Beta 4

This commit is contained in:
2026-04-11 17:23:19 +02:00
parent 7e5ea20409
commit 62bc82f158
44 changed files with 860 additions and 51 deletions

View File

@@ -0,0 +1,14 @@
<button disabled tuiButton appearance="secondary" iconStart="@tui.plus">
{{ "chat.chatnav.networkList.newNetwork"|translate }}
</button>
@for (network of serviceManager.networks(); track network.networkId) {
<button [class.enlarge]="breakpoint() == 'mobile'" tuiButton
[appearance]="router.url == '/chat/network/' + network.networkId ? 'primary' : 'flat'"
[routerLink]="'/chat/network/' + network.networkId">
<oimg [src]="network.picture" height="35px" width="35px" [radius]="10"></oimg>
<div class="info">
<span>{{ network.name }}</span>
</div>
</button>
}