-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* defer checking for hearing layout until conference is not null * VIH-11082 hide im behind a feature flag * hide im components
- Loading branch information
1 parent
3e73c63
commit 405c282
Showing
21 changed files
with
247 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 7 additions & 5 deletions
12
...eoWeb/ClientApp/src/app/vh-officer/command-centre-menu/command-centre-menu.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
<div class="tabcontainer"> | ||
<div class="tab tab--left"> | ||
<button id="hearingsTabButton" [ngClass]="{ active: currentMenu === 'Hearing' }" (click)="displayHearing()">Hearings</button> | ||
<button id="hearingsTabButton" [ngClass]="{ active: currentMenu === 'Hearing' }" (click)="displayHearing()">Hearings</button> | ||
</div> | ||
<div [ngClass]="isStaffMember ? 'tab tab--middle' : 'tab tab--right'"> | ||
<ng-container *appFeatureFlag="featureFlags.instantMessaging"> | ||
<div [ngClass]="isStaffMember ? 'tab tab--middle' : 'tab tab--right'"> | ||
<button id="messagesTabButton" [ngClass]="{ active: currentMenu === 'Message' }" (click)="displayMessages()">Messages</button> | ||
</div> | ||
<div class="tab tab--right" *ngIf="isStaffMember"> | ||
<button id="command-centre-join-hearing-btn" (click)="signIntoConference()" [disabled]="!conferenceId" > Join Hearing </button> | ||
</div> | ||
</ng-container> | ||
<div class="tab tab--right" *ngIf="isStaffMember"> | ||
<button id="command-centre-join-hearing-btn" (click)="signIntoConference()" [disabled]="!conferenceId">Join Hearing</button> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.