Skip to content

Commit

Permalink
fixed logical error
Browse files Browse the repository at this point in the history
  • Loading branch information
dobeybobey committed Oct 25, 2024
1 parent aff36aa commit a2df3aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ <h5 class="modal-title">
<div class="modal-footer">
<button type="button" class="btn btn-light" (click)="activeModal.dismiss()">Cancel</button>
<button id="btn-confirm-copy-course" type="button" class="btn btn-primary" (click)="copy()"
[disabled]="!newFeedbackSessionName || copyToCourseSet.size || !validName< 1">Copy</button>
[disabled]="!newFeedbackSessionName || copyToCourseSet.size < 1 || !validName">Copy</button>
</div>

0 comments on commit a2df3aa

Please sign in to comment.