Skip to content

Commit

Permalink
Remove remaining — chars with dashed class (#12219)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skrypt authored Aug 18, 2022
1 parent 2297a6b commit 03d0534
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="form-check">
<input asp-for="Required" type="checkbox" class="form-check-input">
<label class="form-check-label" asp-for="Required">@T["Required"]</label>
<span class="hint">— @T["Whether a value is required."]</span>
<span class="hint dashed">@T["Whether a value is required."]</span>
</div>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@
<div class="form-check">
<input type="checkbox" class="form-check-input" asp-for="Required" checked="@Model.Required">
<label class="form-check-label" asp-for="Required">@T["Required"]</label>
<span class="hint">— @T["Whether a media is required."]</span>
<span class="hint dashed">@T["Whether a media is required."]</span>
</div>
</div>
<div class="mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" asp-for="Multiple" checked="@Model.Multiple">
<label class="form-check-label" asp-for="Multiple">@T["Multiple"]</label>
<span class="hint">— @T["Whether multiple media can be selected."]</span>
<span class="hint dashed">@T["Whether multiple media can be selected."]</span>
</div>
</div>
<div class="mb-3 ">
<div class="form-check">
<input type="checkbox" class="form-check-input" asp-for="AllowMediaText" checked="@Model.AllowMediaText">
<label class="form-check-label" asp-for="AllowMediaText">@T["Allow media text"]</label>
<span class="hint">— @T["Whether media text editing is allowed."]</span>
<span class="hint dashed">@T["Whether media text editing is allowed."]</span>
</div>
</div>
<div class="mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" asp-for="AllowAnchors" checked="@Model.AllowAnchors">
<label class="form-check-label" asp-for="AllowAnchors">@T["Allow anchors"]</label>
<span class="hint">— @T["Whether selecting an anchor point for resizing is allowed."]</span>
<span class="hint dashed">@T["Whether selecting an anchor point for resizing is allowed."]</span>
</div>
</div>
<div class="mb-3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<div class="form-check">
<input type="checkbox" class="form-check-input" asp-for="Render" checked="@Model.Render" />
<label class="form-check-label" asp-for="Render">@T["Render"]</label>
<span class="hint">— @T["Whether to render metadata for this page."]</span>
</div>
<span class="hint dashed">@T["Whether to render metadata for this page."]</span>
</div>
</div>

<div class="mb-3" asp-validation-class-for="PageTitle">
Expand Down

0 comments on commit 03d0534

Please sign in to comment.