Open
Description
In my Laravel 11 project using Laravel Nova 5, the resource lock functionality wasn't working as expected. After some investigation, I found a solution.
I modified the DetachedFilterCard.vue file—specifically a function within it—and then recompiled the frontend assets with npm run build. After doing this, the locking feature started working correctly.
loadPersistedFilters() {
...
this.syncFilters();
},
to this:
loadPersistedFilters() {
....
this.filterChanged();
},
Metadata
Metadata
Assignees
Labels
No labels