File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 1.19.1] - 2021-10-14
8
+
9
+ ### Changed
10
+
11
+ - Fixed table target default
12
+
7
13
## [ 1.19.0] - 2021-10-14
8
14
9
15
### Added
@@ -518,7 +524,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
518
524
519
525
- Initial release
520
526
521
- [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.19.0...development
527
+ [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.19.1...development
528
+ [ 1.19.1 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.18.0...v1.19.1
522
529
[ 1.19.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.18.0...v1.19.0
523
530
[ 1.18.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.17.0...v1.18.0
524
531
[ 1.17.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.16.0...v1.17.0
Original file line number Diff line number Diff line change 97
97
wire:sortable.item =" {{ $row -> {$primaryKey } } }"
98
98
:reordering =" $reordering"
99
99
:url =" method_exists($this, 'getTableRowUrl') ? $this->getTableRowUrl($row) : ''"
100
- :target =" method_exists($this, 'getTableRowUrlTarget') ? $this->getTableRowUrlTarget($row) : ''"
100
+ :target =" method_exists($this, 'getTableRowUrlTarget') ? $this->getTableRowUrlTarget($row) : '_self '"
101
101
:class =" method_exists($this, 'setTableRowClass') ? ' ' . $this->setTableRowClass($row) : ''"
102
102
:id =" method_exists($this, 'setTableRowId') ? $this->setTableRowId($row) : ''"
103
103
:customAttributes =" method_exists($this, 'setTableRowAttributes') ? $this->setTableRowAttributes($row) : []"
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ class="form-check-input"
98
98
wire:sortable.item =" {{ $row -> {$primaryKey } } }"
99
99
:reordering =" $reordering"
100
100
:url =" method_exists($this, 'getTableRowUrl') ? $this->getTableRowUrl($row) : ''"
101
- :target =" method_exists($this, 'getTableRowUrlTarget') ? $this->getTableRowUrlTarget($row) : ''"
101
+ :target =" method_exists($this, 'getTableRowUrlTarget') ? $this->getTableRowUrlTarget($row) : '_self '"
102
102
:class =" method_exists($this, 'setTableRowClass') ? ' ' . $this->setTableRowClass($row) : ''"
103
103
:id =" method_exists($this, 'setTableRowId') ? $this->setTableRowId($row) : ''"
104
104
:customAttributes =" method_exists($this, 'setTableRowAttributes') ? $this->setTableRowAttributes($row) : []"
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ class="rounded border-gray-300 text-indigo-600 shadow-sm transition duration-150
100
100
wire:sortable.item =" {{ $row -> {$primaryKey } } }"
101
101
:reordering =" $reordering"
102
102
:url =" method_exists($this, 'getTableRowUrl') ? $this->getTableRowUrl($row) : ''"
103
- :target =" method_exists($this, 'getTableRowUrlTarget') ? $this->getTableRowUrlTarget($row) : ''"
103
+ :target =" method_exists($this, 'getTableRowUrlTarget') ? $this->getTableRowUrlTarget($row) : '_self '"
104
104
:class ="
105
105
($index % 2 === 0 ?
106
106
'bg-white dark:bg-gray-700 dark:text-white' . (method_exists($this, 'getTableRowUrl') ? ' hover:bg-gray-100' : '') :
You can’t perform that action at this time.
0 commit comments