Bug description
When updating the cp search index to include other fields, results containing those fields are returned from the search endpoint, but are not displayed in the Command Palette.
It appears the server-side part of the Search is working correctly... but results are not correctly displayed.
If you search for the "Title", it appears.
If you search for another field in the Entry, that is configured to be used, it does not appear (but is returned by the search call server-side.
How to reproduce
- New Statamic 6 install, no starter kit
- Update
config/statamic/search.php with the below search config (see below)
- Add a new Entry to the Pages collection, and give it a Title of "About"
- Add some content to the Markdown field, and include the word "banana" somewhere.
- Save
- Review
storage/statamic/search/cp.json - the "content" field should be in the index for the Entry you just created
- Open Dev tools to see Network requests
- Cmd+K to load the Command Palette
- Search for "bana"
- Review the Network Requests, and find the response: it'll be something like:
[{"category":"Content Search","icon":"entry","keys":null,"text":"About","url":"http:\/\/statamic-6.test\/cp\/collections\/pages\/entries\/091cd1cd-24b9-493e-9881-4b0d8828fc73","openNewTab":null,"trackRecent":true,"badge":"Statamic - Pages","reference":"entry::091cd1cd-24b9-493e-9881-4b0d8828fc73"}]
- But the Command Palette will not show the result
At this point, I would expect to see "About" in the list because the Content field has the word "banana" in it, and was returned by the search endpoint.
12. Change search to "About"
13. You will see the result

Search config:
'cp' => [
'driver' => 'local',
'searchables' => ['content', 'users', 'addons'],
'fields' => ['title', 'content'],
],
Logs
Environment
Environment
Application Name: Statamic
Laravel Version: 12.49.0
PHP Version: 8.4.17
Composer Version: 2.9.3
Environment: local
Debug Mode: ENABLED
URL: statamic-6.test
Maintenance Mode: OFF
Timezone: UTC
Locale: en
Cache
Config: NOT CACHED
Events: NOT CACHED
Routes: NOT CACHED
Views: CACHED
Drivers
Broadcasting: log
Cache: file
Database: sqlite
Logs: stack / single
Mail: log
Queue: sync
Session: file
Storage
public/storage: NOT LINKED
Statamic
Addons: 0
Sites: 1
Stache Watcher: Enabled (auto)
Static Caching: Disabled
Version: 6.1.0 PRO
Installation
Fresh statamic/statamic site via CLI
Additional details
No response
Bug description
When updating the
cpsearch index to include other fields, results containing those fields are returned from thesearchendpoint, but are not displayed in the Command Palette.It appears the server-side part of the Search is working correctly... but results are not correctly displayed.
If you search for the "Title", it appears.
If you search for another field in the Entry, that is configured to be used, it does not appear (but is returned by the
searchcall server-side.How to reproduce
config/statamic/search.phpwith the below search config (see below)storage/statamic/search/cp.json- the "content" field should be in the index for the Entry you just created[{"category":"Content Search","icon":"entry","keys":null,"text":"About","url":"http:\/\/statamic-6.test\/cp\/collections\/pages\/entries\/091cd1cd-24b9-493e-9881-4b0d8828fc73","openNewTab":null,"trackRecent":true,"badge":"Statamic - Pages","reference":"entry::091cd1cd-24b9-493e-9881-4b0d8828fc73"}]At this point, I would expect to see "About" in the list because the Content field has the word "banana" in it, and was returned by the

searchendpoint.12. Change search to "About"
13. You will see the result
Search config:
Logs
Environment
Installation
Fresh statamic/statamic site via CLI
Additional details
No response