Skip to content

Commit

Permalink
Merged from master
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJWoodcock committed Sep 2, 2021
2 parents 3d9dcec + 8df624b commit c1418b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public async Task<OrchestratorResponse> PostSkillsEditModelAsync(VacancyRouteMod
}

var currentSkills = new List<string>();
if(vacancy.Skills != null)
if (vacancy.Skills != null)
currentSkills.AddRange(vacancy.Skills);

SetVacancyWithEmployerReviewFieldIndicators(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class SubmitReviewModel : VacancyRouteModel, IValidatableObject
{
private const int RejectedReasonMaxCharacters = 200;

[Required(ErrorMessage = "You need to submit or reject the advert")]
[Required(ErrorMessage = "Confirm if you want to submit or reject this advert ")]
public bool? SubmitToEsfa { get; set; }

public string RejectedReason { get; set; }
Expand Down

0 comments on commit c1418b1

Please sign in to comment.