Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix syntax on context param #2210

Merged
merged 1 commit into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix syntax on context param
  • Loading branch information
maxgds committed Aug 24, 2021
commit 3616b2fbd9045184d2ae0b16c298c32af8c13d69
4 changes: 1 addition & 3 deletions app/views/histories/10_downing_street.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
]
} %>
<%= render "govuk_publishing_components/components/title", {
context: {
text: "History",
},
context: "History",
title: "10 Downing Street",
} %>
</div>
Expand Down
4 changes: 1 addition & 3 deletions app/views/histories/11_downing_street.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
]
} %>
<%= render "govuk_publishing_components/components/title", {
context: {
text: "History",
},
context: "History",
title: "11 Downing Street",
} %>
</div>
Expand Down
4 changes: 1 addition & 3 deletions app/views/histories/1_horse_guards_road.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
]
} %>
<%= render "govuk_publishing_components/components/title", {
context: {
text: "History",
},
context: "History",
title: "1 Horse Guards Road",
} %>
</div>
Expand Down
4 changes: 1 addition & 3 deletions app/views/histories/king_charles_street.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
]
} %>
<%= render "govuk_publishing_components/components/title", {
context: {
text: "History",
},
context: "History",
title: "King Charles Street",
} %>
</div>
Expand Down
4 changes: 1 addition & 3 deletions app/views/histories/lancaster_house.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
]
} %>
<%= render "govuk_publishing_components/components/title", {
context: {
text: "History",
},
context:"History",
title: "Lancaster House",
} %>
</div>
Expand Down