From d82eb50d7d349d7c3984528f71120ae9334ce4fd Mon Sep 17 00:00:00 2001 From: webchick <drupal@webchick.net> Date: Mon, 4 Aug 2014 13:17:54 -0700 Subject: [PATCH] Issue #2315189 by herom: Fixed 2 schema element types mistyped as sequence. --- core/modules/comment/config/schema/comment.schema.yml | 2 +- core/modules/node/config/schema/node.schema.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/comment/config/schema/comment.schema.yml b/core/modules/comment/config/schema/comment.schema.yml index 59900c14b729..4d482c1ea74b 100644 --- a/core/modules/comment/config/schema/comment.schema.yml +++ b/core/modules/comment/config/schema/comment.schema.yml @@ -36,7 +36,7 @@ action.configuration.comment_unpublish_by_keyword_action: type: sequence label: 'Keywords' sequence: - - type: sequence + - type: string label: 'Keyword' action.configuration.comment_unpublish_action: diff --git a/core/modules/node/config/schema/node.schema.yml b/core/modules/node/config/schema/node.schema.yml index 81e097735ebd..587d3e38b276 100644 --- a/core/modules/node/config/schema/node.schema.yml +++ b/core/modules/node/config/schema/node.schema.yml @@ -124,7 +124,7 @@ action.configuration.node_unpublish_by_keyword_action: type: sequence label: 'Keywords' sequence: - - type: sequence + - type: string label: 'Keyword' block.settings.node_syndicate_block: -- GitLab