Skip to content

Commit

Permalink
[#12335] Instructor sessions page: fix copy questions modal checkbox (#…
Browse files Browse the repository at this point in the history
…12348)

* Some new changes

* Fixing issue #12335

* A small edit

* Final Changes

* Last Change

* A little change

* Last change again
  • Loading branch information
quantavoid11 authored Apr 6, 2023
1 parent d705024 commit 4dd002f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ exports[`CopyQuestionsFromOtherSessionsModalComponent should snap when feedback
<tr>
<td>
<input
class="form-control ng-untouched ng-pristine ng-valid"
class="ng-untouched ng-pristine ng-valid"
type="checkbox"
/>
</td>
Expand All @@ -159,7 +159,7 @@ exports[`CopyQuestionsFromOtherSessionsModalComponent should snap when feedback
<tr>
<td>
<input
class="form-control ng-untouched ng-pristine ng-valid"
class="ng-untouched ng-pristine ng-valid"
type="checkbox"
/>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h4 class="modal-title">Copy Questions</h4>
</thead>
<tbody>
<tr *ngFor="let questionCandidate of feedbackSessionTabModel.questionsTableRowModels">
<td><input type="checkbox" class="form-control" [(ngModel)]="questionCandidate.isSelected"></td>
<td><input type="checkbox" [(ngModel)]="questionCandidate.isSelected"></td>
<td>{{ questionCandidate.question.questionType | questionTypeName }}</td>
<td>{{ questionCandidate.question.questionBrief }}</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,3 @@
justify-content: right;
background-color: white;
}

.form-control {
height: calc(.5em + 1.5vh);
width: calc(.5em + 1.5vw);
}

0 comments on commit 4dd002f

Please sign in to comment.