Hello everyone, the switch for hiding/showing dependent blocks does not work for me. Both the switch and both blocks are visible. I can’t figure out the reason. Grav v1.7.49.2 - Admin v1.10.49Below is the blueprints codeThanks.

title: 'Conditional Example'
'@extends':
type: default
context: blueprints://pages
form:
fields:
tabs:
type: tabs
active: 1
fields:
content:
fields:
# SELECTOR FIELD
header.content_choice:
type: select
label: 'Content Type'
options:
option_a: 'Option A'
option_b: 'Option B'
none: 'Hide Both'
default: none
# OPTION A FIELDS
header.option_a_field:
type: text
label: 'Option A Text'
show_on: content_choice.option_a
placeholder: 'Enter text for Option A'
# OPTION B FIELDS
header.option_b_field:
type: textarea
label: 'Option B Content'
show_on: content_choice.option_b
placeholder: 'Enter content for Option B'