casing issues + missing semicolon in view

This commit is contained in:
Bjarke Berg
2021-02-05 17:17:59 +01:00
parent 39e9daf11a
commit 7949f12377
3 changed files with 17 additions and 13 deletions

View File

@@ -16,8 +16,9 @@
{
foreach (var section in Model.sections) {
<div class="grid-section">
@foreach (var row in section.rows) {
renderRow(row)
@foreach (var row in section.rows)
{
renderRow(row);
}
</div>
}
@@ -26,8 +27,9 @@
@foreach (var s in Model.sections) {
<div class="grid-section">
<div class="col-md-@s.grid column">
@foreach (var row in s.rows) {
renderRow(row)
@foreach (var row in s.rows)
{
renderRow(row);
}
</div>
</div>

View File

@@ -12,8 +12,9 @@
{
foreach (var section in Model.sections) {
<div class="grid-section">
@foreach (var row in section.rows) {
renderRow(row, true)
@foreach (var row in section.rows)
{
renderRow(row, true);
}
</div>
}
@@ -23,8 +24,9 @@
@foreach (var s in Model.sections) {
<div class="grid-section">
<div class="col-md-@s.grid column">
@foreach (var row in s.rows) {
renderRow(row, false)
@foreach (var row in s.rows)
{
renderRow(row, false);
}
</div>
</div>