Skip to content

Commit

Permalink
Merge pull request #139 from opcodesio/small-bugfix
Browse files Browse the repository at this point in the history
small bugfix
  • Loading branch information
arukompas authored Oct 20, 2022
2 parents d6e0a33 + 1a960cf commit 6f5031f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opcodesio/log-viewer",
"version": "v1.6.2",
"version": "v1.6.3",
"description": "Fast and easy-to-use log viewer for your Laravel application",
"keywords": [
"arukompas",
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/log-list.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="flex flex-col h-full w-full mx-3 mb-4">
<div class="px-4 mb-4 flex items-start">
<div class="flex-1 flex items-center mr-6">
@if($showLevelsDropdown)
@if(isset($showLevelsDropdown) && $showLevelsDropdown)
<div>@include('log-viewer::partials.log-list-level-buttons')</div>
@endif
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/search-input.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</button>
@else
<button wire:click="submitSearch">
<span>Search {{ isset($file) ? $file->name : 'all files' }}</span>
<span>Search {{ isset($file) ? 'in "' . $file->name.'"' : 'all files' }}</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><use href="#icon-arrow-right" /></svg>
</button>
@endif
Expand Down

0 comments on commit 6f5031f

Please sign in to comment.