Hello there.
In Deliver Theme there are some code lines, in showcase.html.twig that use an script to slide some pictures in the top of page. This script use values between quotation marks, like 'true' or 'false' (i.e, arrows: {{ theme_config.carousel_options.arrows }}).
I've been trying to customize the admin blueprint for theme, and I've already configured like this (in this case, to enable or disable arrows in slides):
carousel_options.arrows:
type: toggle
highlight: 1
default: false
label: Arrows
highlight: 1
options:
true: PLUGIN_ADMIN.YES
false: PLUGIN_ADMIN.NO
validate:
type: bool
In the .yaml file of theme, the value saved is: arrows: true, without quotation marks. This theme doesn't work if the true or false values are without quotation marks. In the Chrome Inspector you can see the following:
The arrow value is showed in browser like a number. For that reason it doesn't work.
What can I do to use toggle field and save as true or false with quotation marks??
Thanks in advance.

