Skip to content

Commit 4229c8e

Browse files
authored
Merge pull request #98 from Gustavinho/hotfix/filter-button-positioning
hotfix: Fix filters button positioning
2 parents 3550ee7 + 367e10b commit 4229c8e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [2.2.4] - 2021-05-16
4+
### Fixed
5+
- Fixed alert container to avoid blocking the UI elements.
6+
- Fixed filers button positioning when there isn't a search textinput
7+
8+
## [2.2.3] - 2021-04-14
9+
### Changed
10+
- Live demo URL in the docs
11+
## [2.2.2] - 2021-04-10
12+
### Fixed
13+
- Changed `$model->getKey()` insted of hardcoded `$model->id`
14+
15+
## [2.2.1] - 2021-03-29
16+
### Fixed
17+
- Added `detail-view`, `grid-view` and `list-view` to the views to be published.
18+
319
## [2.2] - 2021-03-01
420
### Added
521
- New list view

resources/views/table-view/filters.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- form/input-group
77
- dropdown --}}
88

9-
<div class="flex flex-row">
9+
<div class="flex justify-end">
1010
{{-- Search input --}}
1111
@if ($searchBy)
1212
<div class="flex-1">

resources/views/table-view/table-view.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<div>
1515
{{-- Search input and filters --}}
16-
<div class="p-4 pb-0">
16+
<div class="py-4 px-3 pb-0">
1717
@include('laravel-views::table-view.filters')
1818
</div>
1919

0 commit comments

Comments
 (0)