Simple searchable field causing Alpine warning + table.js error?

I have a fresh Filament v3 project with a model & resource. The resource has a single
TextColumn
field marked as searchable(). Whenever I perform a search in the search box I receive a warning + 2 errors in the console.
Alpine Expression Error: this.$root is undefined
Expression: "const recordsOnPage = getRecordsOnPage()
...

Uncaught TypeError: this.$root is undefined
    getRecordsOnPage http://filament-v3.test/js/filament/tables/components/table.js?v=3.1.35.0:1
...
Uncaught (in promise) TypeError: this.$root is undefined
    getRecordsOnPage http://filament-v3.test/js/filament/tables/components/table.js?v=3.1.35.0:1
...


It seems strange to be getting an error on such a simple setup. The search appears to be working correctly, but every time the search text is modified the console spews out warnings and errors? Any help would be greatly appreciated. I'm hoping it's just something simple I'm overlooking.
Was this page helpful?