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

correct bootstrap-select dependency #14578

Merged
merged 1 commit into from
Oct 25, 2023
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
@@ -1,6 +1,6 @@
@model AuditTrailListViewModel

<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>
<style asp-name="audittrailui" asp-src="~/OrchardCore.AuditTrail/Styles/audittrailui.min.css" debug-src="~/OrchardCore.AuditTrail/Styles/audittrailui.css" at="Head" depends-on="admin"></style>

<!-- Hidden submit button do not remove -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

@await DisplayAsync(Model.Pager)

<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<script at="Foot">
$(function () {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@model ListContentsViewModel

<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<!-- Hidden submit button do not remove -->
<input type="submit" name="submit.Filter" id="submitFilter" class="visually-hidden" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
int startIndex = (Model.Pager.Page - 1) * (Model.Pager.PageSize) + 1;
int endIndex = startIndex + Model.DeploymentPlans.Count - 1;
}
<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<zone Name="Title"><h1>@RenderTitleSegments(T["Deployment Plans"])</h1></zone>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@
}
</style>

<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
int endIndex = startIndex + Model.ShellSettingsEntries.Count - 1;
}

<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<zone Name="Title"><h1>@RenderTitleSegments(T["Tenants"])</h1></zone>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@model UsersIndexViewModel

<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<zone Name="Title"><h1>@RenderTitleSegments(T["Users"])</h1></zone>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@model UsersIndexViewModel

<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<!-- Hidden submit button do not remove -->
<input type="submit" name="submit.Filter" id="submitFilter" class="visually-hidden" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
int startIndex = (Model.Pager.Page - 1) * (Model.Pager.PageSize) + 1;
int endIndex = startIndex + Model.Workflows.Count - 1;
}
<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<zone Name="Title"><h1>@RenderTitleSegments(T["{0} Instances", Model.WorkflowType.Name])</h1></zone>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
int startIndex = (Model.Pager.Page - 1) * (Model.Pager.PageSize) + 1;
int endIndex = startIndex + Model.WorkflowTypes.Count - 1;
}
<script asp-name="bootstrap-select" depends-on="admin" at="Foot"></script>
<script asp-name="bootstrap-select" depends-on="bootstrap" at="Foot"></script>

<zone Name="Title"><h1>@RenderTitleSegments(T["Manage Workflows"])</h1></zone>

Expand Down
Loading