Skip to content

Commit 3aa2d24

Browse files
committed
Merge branch 'release/4.1.1'
2 parents 68ec515 + bc4e0fc commit 3aa2d24

4 files changed

Lines changed: 156 additions & 124 deletions

File tree

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Editor/Components/Boolean/Default.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
<div class="@Model.AttributeDescriptor.CssClass form-check form-check-inline">
88
<label class="form-check-label">
9-
<input type="radio" asp-for="Value" value="1" class="form-check-input" checked=@Model.IsTrue() disabled=@(!Model.AttributeDescriptor.IsEnabled) required=@Model.AttributeDescriptor.IsRequired /> Yes
9+
<input type="radio" asp-for="Value" value="1" id="@TagBuilder.CreateSanitizedId(ViewData.TemplateInfo.GetFullHtmlFieldName("Yes"), "_")" class="form-check-input" checked=@Model.IsTrue() disabled=@(!Model.AttributeDescriptor.IsEnabled) required=@Model.AttributeDescriptor.IsRequired /> Yes
1010
</label>
1111
</div>
1212
<div class="form-check form-check-inline">
1313
<label class="form-check-label">
14-
<input type="radio" asp-for="Value" value="0" class="form-check-input" checked=@Model.IsFalse() disabled=@(!Model.AttributeDescriptor.IsEnabled) required=@Model.AttributeDescriptor.IsRequired /> No
14+
<input type="radio" asp-for="Value" value="0" id="@TagBuilder.CreateSanitizedId(ViewData.TemplateInfo.GetFullHtmlFieldName("No"), "_")" class="form-check-input" checked=@Model.IsFalse() disabled=@(!Model.AttributeDescriptor.IsEnabled) required=@Model.AttributeDescriptor.IsRequired /> No
1515
</label>
1616
</div>

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<!-- Vendor Scripts -->
1212
<script src="~/_content/OnTopic.Editor.AspNetCore/Shared/Scripts/Vendor.js"></script>
13-
<script src="https://cdn.ckeditor.com/4.13.0/standard/ckeditor.js"></script>
13+
<script src="https://cdn.ckeditor.com/4.14.0/standard/ckeditor.js"></script>
1414
<script src="https://use.fontawesome.com/fd4f92cdd7.js"></script>
1515

1616
<!-- Vendor Styles -->

0 commit comments

Comments
 (0)