Skip to content

Commit

Permalink
Merge branch 'main' into feature/storage-secret
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGHippo authored Jul 26, 2024
2 parents f22585a + 36db3fb commit a0bb087
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@model Dfe.EarlyYearsQualification.Web.Models.Content.AdvicePageModel

@{
ViewData["Title"] = "Advice";
ViewData["Title"] = Model.Heading;
}

@section BeforeMainContent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@model Dfe.EarlyYearsQualification.Web.Models.Content.QuestionModels.DateQuestionModel

@{
ViewData["Title"] = "Questions";
ViewData["Title"] = Model.Question;
}

@section BeforeMainContent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@model Dfe.EarlyYearsQualification.Web.Models.Content.QuestionModels.DropdownQuestionModel

@{
ViewData["Title"] = "Questions";
ViewData["Title"] = Model.Question;
}

<script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@model Dfe.EarlyYearsQualification.Web.Models.Content.QuestionModels.RadioQuestionModel

@{
ViewData["Title"] = "Questions";
ViewData["Title"] = Model.Question;
}

@section BeforeMainContent {
Expand Down

0 comments on commit a0bb087

Please sign in to comment.