Skip to content

Commit 2584aff

Browse files
committed
Up to date with master
2 parents db9ec28 + 270040f commit 2584aff

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

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

3+
## [2.2.5] - 2021-05-29
4+
5+
### Fixed
6+
- Added a `min-h-screen` to all the views to avoid the filters menu cutting off when thre are not so much data.
37
## [2.2.4] - 2021-05-16
48
### Fixed
59
- Fixed alert container to avoid blocking the UI elements.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
</div>
3333

3434
@include('laravel-views::components.confirmation-message', ['message' => $confirmationMessage])
35-
</x-lv-layout>
35+
</x-lv-layout>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
</div>
1919

2020
@include('laravel-views::components.confirmation-message', ['message' => $confirmationMessage])
21-
</x-lv-layout>
21+
</x-lv-layout>

resources/views/view/layout.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div>
1+
<div class="min-h-screen">
22
{{-- Success/Error feedback --}}
33
<x-lv-alerts-handler />
44
{{ $slot }}

0 commit comments

Comments
 (0)