Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VIH-10554 Demo Env #2122

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions VideoWeb/VideoWeb/ClientApp/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ testem.log
# System Files
.DS_Store
Thumbs.db
random_trigger
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
<li *ngIf="loggedIn" class="govuk-header__navigation-item stay-right">
<a id="logout-link" class="govuk-header__link" [routerLink]="logoutRoute">{{ 'header.sign-out' | translate }}</a>
</li>
<li class="govuk-header__navigation-item">
<span>{{ username }}</span>
</li>
</ul>
</nav>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
</ng-container>

<a
*ngIf="canCallParticipantIntoHearing()"
(keyup.enter)="callParticipantIntoHearing()"
tabindex="0"
(click)="callParticipantIntoHearing()"
Expand All @@ -59,15 +58,14 @@
<ng-container *ngIf="isWitness; then isWitnessCallContent; else isNotWitnessCallContent"> </ng-container>
</a>
<a
*ngIf="canDismissParticipantFromHearing()"
(keyup.enter)="dismissParticipantFromHearing()"
tabindex="0"
(click)="dismissParticipantFromHearing()"
[id]="idPrefix + '-dismiss-' + (1 | random)"
>
{{
'judge-context-menu.dismiss-participant'
| translate : { role: 'hearing-role.' + (participant.hearingRole | hyphenate) | translate | lowercase }
| translate: { role: 'hearing-role.' + (participant.hearingRole | hyphenate) | translate | lowercase }
}}
</a>
<a
Expand All @@ -94,6 +92,6 @@
<ng-template #isNotWitnessCallContent>
{{
'judge-context-menu.admit-participant'
| translate : { role: 'hearing-role.' + (participant.hearingRole | hyphenate) | translate | lowercase }
| translate: { role: 'hearing-role.' + (participant.hearingRole | hyphenate) | translate | lowercase }
}}
</ng-template>
Original file line number Diff line number Diff line change
Expand Up @@ -627,9 +627,6 @@ export class ParticipantsPanelComponent implements OnInit, OnDestroy {
}

async callParticipantIntoHearing(participant: PanelModel) {
if (!participant.isCallableAndReadyToJoin) {
return;
}
this.logger.debug(`${this.loggerPrefix} Judge is attempting to call participant into hearing`, {
conference: this.conferenceId,
participant: participant.id
Expand Down Expand Up @@ -664,10 +661,6 @@ export class ParticipantsPanelComponent implements OnInit, OnDestroy {
}

async dismissParticipantFromHearing(participant: PanelModel) {
if (!participant.isCallableAndReadyToBeDismissed) {
return;
}

this.logger.debug(`${this.loggerPrefix} Judge is attempting to dismiss participant from hearing`, {
conference: this.conferenceId,
participant: participant.id
Expand Down
Loading
Loading