Replies: 1 comment
-
Hello, there's no something like that now, i've added a PR #3232 |
Beta Was this translation helpful? Give feedback.
0 replies
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.
-
Hi! I'm developing a website for a customer and they have a "Careers" page that shows the job listings that they are currently hiring. Since they might reuse the job listings at different times, I created a collection called
Jobs
where we can add the information about each job (name, location, salary, etc.). Then we have theCareersPage
global document which contains the information shown on that page and a Relationship field to choose which job listings to show.When we click on the Relationship field to choose an option, I get the list of jobs just as expected. However, we have certain job listings with the same name but for different locations, so we cannot identify which job is which easily from the select menu because they have the same name and the Jobs collection has
admin.useAsTitle: "name"
. See picture for reference:In the example shown above, 2 job listings have the same name but each one is for a different clinic.
Is there a way to only customize the label inside that field without having to create a full custom component to render that select field?
I would like to format the label to be
name - location
to identify them easily if possible. Thank you in advance!Beta Was this translation helpful? Give feedback.
All reactions