Skip to content

Commit 6f5031f

Browse files
authored
Merge pull request #139 from opcodesio/small-bugfix
small bugfix
2 parents d6e0a33 + 1a960cf commit 6f5031f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opcodesio/log-viewer",
3-
"version": "v1.6.2",
3+
"version": "v1.6.3",
44
"description": "Fast and easy-to-use log viewer for your Laravel application",
55
"keywords": [
66
"arukompas",

resources/views/livewire/log-list.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="flex flex-col h-full w-full mx-3 mb-4">
88
<div class="px-4 mb-4 flex items-start">
99
<div class="flex-1 flex items-center mr-6">
10-
@if($showLevelsDropdown)
10+
@if(isset($showLevelsDropdown) && $showLevelsDropdown)
1111
<div>@include('log-viewer::partials.log-list-level-buttons')</div>
1212
@endif
1313
</div>

resources/views/partials/search-input.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</button>
2222
@else
2323
<button wire:click="submitSearch">
24-
<span>Search {{ isset($file) ? $file->name : 'all files' }}</span>
24+
<span>Search {{ isset($file) ? 'in "' . $file->name.'"' : 'all files' }}</span>
2525
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><use href="#icon-arrow-right" /></svg>
2626
</button>
2727
@endif

0 commit comments

Comments
 (0)