Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcarrian committed Feb 4, 2025
1 parent cb2ff64 commit 577c34c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<mat-form-field>
<mat-label>Destination Type</mat-label>
<mat-select [formControl]="form.controls.subscription.controls.destinationType">
<mat-option [value]="'TOPIC'" [matTooltip]="tooltips.topic" matTooltipClass="large">Topic</mat-option>
<mat-option [value]="'QUEUE'" [matTooltip]="tooltips.queue" matTooltipClass="large">Queue</mat-option>
<mat-option [value]="'TOPIC_ENDPOINT'" [matTooltip]="tooltips.topicEndpoint" matTooltipClass="large">Topic Endpoint</mat-option>
<mat-option [value]="'QUEUE_BROWSER'" [matTooltip]="tooltips.queueBrowser" matTooltipClass="large">Queue Browser</mat-option>
<mat-option value="TOPIC" [matTooltip]="tooltips.topic" matTooltipClass="large">Topic</mat-option>
<mat-option value="QUEUE" [matTooltip]="tooltips.queue" matTooltipClass="large">Queue</mat-option>
<mat-option value="TOPIC_ENDPOINT" [matTooltip]="tooltips.topicEndpoint" matTooltipClass="large">Topic Endpoint</mat-option>
<mat-option value="QUEUE_BROWSER" [matTooltip]="tooltips.queueBrowser" matTooltipClass="large">Queue Browser</mat-option>
</mat-select>
</mat-form-field>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@
</button>
</header>

@if (solaceMessageClient.connected$ | async) {
<sci-sashbox>
<ng-template sciSash>
<app-publisher/>
</ng-template>
<sci-sashbox>
<ng-template sciSash>
<app-publisher/>
</ng-template>

<ng-template sciSash>
<app-subscribers/>
</ng-template>
</sci-sashbox>
}
<ng-template sciSash>
<app-subscribers/>
</ng-template>
</sci-sashbox>

0 comments on commit 577c34c

Please sign in to comment.