Skip to content

Commit

Permalink
Fixed wire:model occurrences
Browse files Browse the repository at this point in the history
  • Loading branch information
dtvmedia committed Mar 22, 2024
1 parent 4dddf41 commit d390434
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@if($show->pageLength === true)
<div class="nodus-table-pagination-change">
<select wire:model="paginate" class="custom-select custom-select-sm">
<select wire:model.live="paginate" class="custom-select custom-select-sm">
<option>10</option>
<option>25</option>
<option>50</option>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@if(count($simpleScopes) > 0 && $show->scopes)
<div class="nodus-table-simple-scopes">
<select wire:model="simpleScope" class="custom-select custom-select-sm">
<select wire:model.live="simpleScope" class="custom-select custom-select-sm">
<option value="">
@lang('nodus.packages.livewire-datatables::datatable.scopes.no_filter')
</option>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@if($show->search === true)
<div class="nodus-table-search">
<input wire:model.debounce.300ms="search"
<input wire:model.live.debounce.300ms="search"
class="form-control form-control-sm ml-auto"
placeholder="@lang('nodus.packages.livewire-datatables::datatable.search.placeholder')"
type="text">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="nodus-table-pagination-change">
<select wire:model="paginate" class="custom-select custom-select-sm">
<select wire:model.live="paginate" class="custom-select custom-select-sm">
<option>10</option>
<option>25</option>
<option>50</option>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@if(count($simpleScopes) > 0)
<div class="nodus-table-simple-scopes col-span-6 sm:col-span-3">
<select wire:model="simpleScope" class="mt-1 block form-select w-full py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:shadow-outline-blue focus:border-blue-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5">
<select wire:model.live="simpleScope" class="mt-1 block form-select w-full py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:shadow-outline-blue focus:border-blue-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5">
<option value="">@lang('nodus.packages.livewire-datatables::datatable.scopes.no_filter')</option>
@foreach($simpleScopes as $scope)
<option value="{{$scope->getIdentifier()}}">{{$scope->getLabel()}}</option>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="nodus-table-search">
<input wire:model.debounce.300ms="search"
<input wire:model.live.debounce.300ms="search"
class="mt-1 form-input block w-full transition duration-150 ease-in-out sm:text-sm sm:leading-5"
placeholder="@lang('nodus.packages.livewire-datatables::datatable.search.placeholder')"
type="text">
Expand Down

0 comments on commit d390434

Please sign in to comment.