[SOLVED] How to set title for node autocomplete

Hi guys

how can I show a title of a custom nodetype in reference autocomplete in inspector?

Hey @marvvvv,

the Node Title which is shown in the autocomplete popup is the so-called “Node Label”.

The docs describe how to set the Node Label using an Eel expression in NodeTypes.yaml:

'Neos.Demo:Flickr':
  label: ${'Flickr plugin (' + q(node).property('tags') + ')'}

BTW - The Node Label is also shown in the Node Tree and in the Workspace Module f.e.

Hope this helps <3

All the best,
Sebastian

1 Like

Thanks! Works great =)

1 Like