Skip to content

Commit

Permalink
Move Requests above existing Connections
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Sep 1, 2024
1 parent 1f31677 commit 41ed518
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/src/app/settings/connections/connections.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ <h1>Connections Management</h1>

<mat-card class="notifications-card">
<mat-card-header>
<mat-card-title>Connections</mat-card-title>
<mat-card-title>Requests</mat-card-title>
</mat-card-header>
<mat-card-content>
@for(entry of connection.connections(); track entry) {
@for(entry of connection.requests(); track entry) {
<app-request [entry]="entry"></app-request>

} @empty { No connections found. }
} @empty { No requests found. }
</mat-card-content>
</mat-card>

<br />

<mat-card class="notifications-card">
<mat-card-header>
<mat-card-title>Requests</mat-card-title>
<mat-card-title>Connections</mat-card-title>
</mat-card-header>
<mat-card-content>
@for(entry of connection.requests(); track entry) {
@for(entry of connection.connections(); track entry) {
<app-request [entry]="entry"></app-request>
} @empty { No requests found. }

} @empty { No connections found. }
</mat-card-content>
</mat-card>

0 comments on commit 41ed518

Please sign in to comment.