samzzi
#1
for example instead of
name: Box
icon: box
label: "{{ blockdescription }}"
use
name: Box
icon: box
label: "{{ blockdescription.or(title) }}"
Where title is another field.
I also noticed that the field name always needs to be lower case (so I can’t use blockDescription) 
Cheers,
Sam
texnixe
#2
Probably not, but I can’t even get a label like in your first example to work in 3.6.1.1.
1 Like
samzzi
#3
You should because it’s working in 3.6.1.1 with me 
You have to make sure that everything in the label reference is lowercase though. The snippet below works for me:
name: Text with media (image/video)
icon: image
label: "{{ blockdescription }}"
tabs:
settings:
label: settings
fields:
blockDescription:
type: text
label: Block description
texnixe
#4
Ah, ok, thanks, I was on the wrong track. Since I always use previews, the label is quite useless.
But no, you cannot use query language here because all that happens here is string replacement on the client side.