Issue with modal in actions

Hi, I'm building a table with a custom livewire component with table builder in a custom page.

The problem is when I add a action in the table and i want to open a modal with a form to get data before exec the action. It doesn't open the modal.

I link the Custom page and the visual-testing-baselines component files.
Solution
Returning all the fields and deleting the getTableQuery() function has already worked for me.
protected function getTableQuery(): Builder|Relation
    {
        if (!empty($this->project)) {
            return VisualTestingBaseline::where(VisualTestingBaselineInterface::PROJECT, $this->project)->selectRaw('*, JSON_LENGTH(screenshots) AS num_screenshots');
        }

        return VisualTestingBaseline::query();
    }
Was this page helpful?