-
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix bootstrap spinner (#1134) * fix detail entangle when using cache (#1179) * Fix cache ttl (#1187) * fx cache ttl * fx cache ttl * fix tests * Add perPage on getCacheKeys (#1189) * fix (#1170) * fix * fix 2 * merge 4.x * fix wire:key --------- Co-authored-by: luanfreitasdev <[email protected]> * fix cacheKeys * wip * fix phpstan * fix cypress tests --------- Co-authored-by: racerguy <[email protected]>
- Loading branch information
1 parent
690433e
commit fdc48e9
Showing
24 changed files
with
161 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"/powergrid.js": "/powergrid.js?id=fdb4bf85097f08ea205185a7e199ada2", | ||
"/powergrid.js": "/powergrid.js?id=50f814d7565817030b1b2ce4099bb763", | ||
"/tom-select.css": "/tom-select.css?id=7af730d2c4bf937316d4002948b1571d", | ||
"/powergrid.css": "/powergrid.css?id=f2c32aef475db76375ad76fb2f0f7d33" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,26 @@ | ||
@php | ||
$rulesValues = $actionRulesClass->recoverFromAction($row, 'pg:rows'); | ||
@endphp | ||
<template | ||
x-cloak | ||
x-if="detailState" | ||
> | ||
<td colspan="999"> | ||
@if (filled($rulesValues['detailView'])) | ||
@includeWhen(data_get($setUp, 'detail.state.' . $row->{$primaryKey}), | ||
$rulesValues['detailView'][0]['detailView'], | ||
[ | ||
@if (data_get($setUp, 'detail.state.' . $row->{$primaryKey})) | ||
@php | ||
$rulesValues = $actionRulesClass->recoverFromAction($row, 'pg:rows'); | ||
@endphp | ||
|
||
@if (filled($rulesValues['detailView'])) | ||
@include($rulesValues['detailView'][0]['detailView'], [ | ||
'id' => data_get($row, $primaryKey), | ||
'options' => array_merge( | ||
data_get($setUp, 'detail.options'), | ||
$rulesValues['detailView']['0']['options']), | ||
] | ||
) | ||
@else | ||
@includeWhen(data_get($setUp, 'detail.state.' . $row->{$primaryKey}), | ||
data_get($setUp, 'detail.view'), | ||
[ | ||
]) | ||
@else | ||
@include(data_get($setUp, 'detail.view'), [ | ||
'id' => data_get($row, $primaryKey), | ||
'options' => data_get($setUp, 'detail.options'), | ||
] | ||
) | ||
]) | ||
@endif | ||
@endif | ||
</td> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.