Skip to content

Commit c97e4ce

Browse files
committed
Fix field conditions in JSON-LD tab
1 parent 905e4a8 commit c97e4ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SiteDefaults/Blueprint.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static function get(): \Statamic\Fields\Blueprint
122122
'instructions' => __('seo-pro::fieldsets/defaults.json_ld_organization_name_instruct'),
123123
'type' => 'text',
124124
'localizable' => true,
125-
'if' => ['json_ld_entity' => 'equals Organization'],
125+
'if' => ['json_ld_entity' => 'equals organization'],
126126
],
127127
],
128128
[
@@ -131,7 +131,7 @@ public static function get(): \Statamic\Fields\Blueprint
131131
'display' => __('seo-pro::fieldsets/defaults.json_ld_organization_logo'),
132132
'instructions' => __('seo-pro::fieldsets/defaults.json_ld_organization_logo_instruct'),
133133
'localizable' => true,
134-
'if' => ['json_ld_entity' => 'equals Organization'],
134+
'if' => ['json_ld_entity' => 'equals organization'],
135135
...static::getAssetFieldConfig(),
136136
],
137137
],
@@ -142,7 +142,7 @@ public static function get(): \Statamic\Fields\Blueprint
142142
'instructions' => __('seo-pro::fieldsets/defaults.json_ld_person_name_instruct'),
143143
'type' => 'text',
144144
'localizable' => true,
145-
'if' => ['json_ld_entity' => 'equals Person'],
145+
'if' => ['json_ld_entity' => 'equals person'],
146146
],
147147
],
148148
],

0 commit comments

Comments
 (0)