Replies: 1 comment 1 reply
-
The issue seems to stem from the fact that the search on collections/track uses |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I have a collection called
tracks
which has a virtual field calledfullTitle
(which is used foruseAsTitle
) and regular field calledtitle
. I want to search thetitle
field, so I addedtitle
to thelistSearchableFields
array andindex: true
to thetitle
field. I am now able to search for tracks at /collections/tracks, but I cannot search for tracks to add whentracks
is a relationship field on a different collection calledsetlists
.When searching for tracks to add to the setlist relationship field
tracks
only about 10 tracks show up and no more will populate when you begin typing.This first image is from /collections/tracks:

and this second is when I try to search for a track to add to a setlist:

As you can see, there should be at least 2 other tracks (besides "cat fancy" as it's already added) that show up for the setlist.
Here is my
Track.ts
collection:and here is my
Setlist.ts
collection which usestracks
as a relationship field calledtracks
:Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions