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

Remove remaining — chars with dashed class #12219

Merged
merged 1 commit into from
Aug 18, 2022
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
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