diff -u b/core/modules/options/config/schema/options.schema.yml b/core/modules/options/config/schema/options.schema.yml --- b/core/modules/options/config/schema/options.schema.yml +++ b/core/modules/options/config/schema/options.schema.yml @@ -159,5 +159,6 @@ -views.filter.group_item.list_field: - type: views_filter_group_item - mapping: - value: - type: mapping \ No newline at end of file +views.filter_value.list_field: + type: sequence + label: 'List values' + sequence: + type: string + label: 'Value' diff -u b/core/modules/options/tests/src/Kernel/Views/OptionsListFilterTest.php b/core/modules/options/tests/src/Kernel/Views/OptionsListFilterTest.php --- b/core/modules/options/tests/src/Kernel/Views/OptionsListFilterTest.php +++ b/core/modules/options/tests/src/Kernel/Views/OptionsListFilterTest.php @@ -74,17 +74,17 @@ 'default_group' => '1', 'group_items' => [ 1 => [ - 'title' => 'Man', + 'title' => 'First', 'operator' => 'or', 'value' => [ - 'man' => 'man', + $this->fieldValues[0] => $this->fieldValues[0], ] ], 2 => [ - 'title' => 'Woman', + 'title' => 'Second', 'operator' => 'or', 'value' => [ - 'woman' => 'woman', + $this->fieldValues[1] => $this->fieldValues[1], ] ], ],