Skip to content

Commit 06ea421

Browse files
authored
Merge pull request #4377 from Laravel-Backpack/fix-list-modal-details
Fix #4352 - ListOperation modal no longer showing when ellipsis is clicked
2 parents bd76d19 + 0d06d50 commit 06ea421

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/public/packages/backpack/base/css/blue-bundle.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/public/packages/backpack/base/css/bundle.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/resources/assets/scss/customs/_list.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
padding-left: 0.6rem !important;
158158
}
159159

160-
&[data-responsive="0"] {
160+
&[data-responsive-table="0"] {
161161
tr th:first-child {
162162
padding-top: 0 !important;
163163
padding-bottom: 0 !important;

src/resources/views/crud/list.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<table
5151
id="crudTable"
5252
class="bg-white table table-striped table-hover nowrap rounded shadow-xs border-xs mt-2"
53-
data-responsive="{{ (int) $crud->getOperationSetting('responsiveTable') }}"
53+
data-responsive-table="{{ (int) $crud->getOperationSetting('responsiveTable') }}"
5454
data-has-details-row="{{ (int) $crud->getOperationSetting('detailsRow') }}"
5555
data-has-bulk-actions="{{ (int) $crud->getOperationSetting('bulkActions') }}"
5656
cellspacing="0">

0 commit comments

Comments
 (0)