Skip to content

Commit

Permalink
Fix maturity instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
VirmasaloA committed Sep 24, 2024
1 parent 2ec42d2 commit a6503f9
Showing 1 changed file with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,34 @@
<div class="row mt-3 ms-2">
<div class="col-12">
<button
class="btn btn-success"
class="btn btn-success me-2 mb-2"
[ngClass]="!activeSection ? '' : 'notactive'"
(click)="selectGuidePage()"
(keydown.enter)="selectGuidePage()"
>
{{ 'i18n_exam_guide' | translate }}
<i class="bi bi-info-square ps-2"></i>
</button>
<!-- ROOM INSTRUCTIONS -->
<button
class="btn btn-success me-2 mb-2"
ngbPopover="{{ displayRoomInstructions() }}"
popoverTitle="{{ 'i18n_instructions' | translate }}"
[hidden]="!room"
>
{{ 'i18n_room_guidance' | translate }}
<i class="bi bi-info-square ps-2"></i>
</button>
<!-- MATURITY INSTRUCTIONS -->
<button
class="btn btn-success"
(click)="showMaturityInstructions()"
[hidden]="exam.executionType.type !== 'MATURITY'"
>
{{ 'i18n_maturity_instructions' | translate }}
<i class="bi bi-info-square ps-2"></i>
</button>

<a
class="skip"
id="skip-button-instructions"
Expand Down Expand Up @@ -100,7 +120,7 @@

<div class="row mt-3 ms-2" [hidden]="!room">
<div class="col-12">
@if (exam.examType.type !== 'MATURITY') {
@if (exam.executionType.type !== 'MATURITY') {
<!-- ROOM INSTRUCTIONS -->
<button
class="btn btn-success"
Expand Down

0 comments on commit a6503f9

Please sign in to comment.