Skip to content

Commit

Permalink
correct bootstrap-select dependency (#14578)
Browse files Browse the repository at this point in the history
  • Loading branch information
giannik authored Oct 25, 2023
1 parent 713ebf6 commit 7817e22
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
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

0 comments on commit 7817e22

Please sign in to comment.