Skip to content

Commit

Permalink
Merge pull request #1352 from TechnologyEnhancedLearning/DLSV2-571_Ch…
Browse files Browse the repository at this point in the history
…angeLabelFromConfirmToReview

DLSV2-571 Change the label of the "Confirm" action link in the review…
  • Loading branch information
kevwhitt-hee authored Aug 17, 2022
2 parents 3fa5674 + 168236f commit 6f012fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@using DigitalLearningSolutions.Data.Models.SelfAssessments;
@model AssessmentQuestion
@{
var actionLinkText = Model.Requested != null && Model.Verified == null ? "Confirm" : "View";
var actionLinkText = Model.Requested != null && Model.Verified == null ? "Review" : "View";
if (!String.IsNullOrEmpty(Model.SupportingComments) || !String.IsNullOrEmpty(Model.SupervisorComments))
{
var commentStr = ViewData["ReviewerCommentsLabel"] ?? "comments";
Expand Down

0 comments on commit 6f012fc

Please sign in to comment.