disable clickable row with getTableRecordActionUsing() not working

I want to disable clickable rows, so i follow the docs:
https://filamentphp.com/docs/2.x/tables/getting-started#clickable-rows


I add to the Resoure:
protected function getTableRecordActionUsing(): ?Closure
    {
        return null;
    }

and try too:
protected function getTableRecordUrlUsing(): ?Closure
    {
        return null;
    }

But is not working
Was this page helpful?