From 96d8821480de1bc559eb97059e6fb10f973ee206 Mon Sep 17 00:00:00 2001 From: David Blankenship Date: Tue, 17 Sep 2024 15:30:38 -0400 Subject: [PATCH] fix(views-text): Change any/all text to not include category Because we have muiltiple places where Categories could be used, we don't want to specify that such that it's not misleading that this doesn't apply to the Jakala added filters. --- .../src/Plugin/Field/FieldWidget/ViewsBasicDefaultWidget.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/profiles/custom/yalesites_profile/modules/custom/ys_views_basic/src/Plugin/Field/FieldWidget/ViewsBasicDefaultWidget.php b/web/profiles/custom/yalesites_profile/modules/custom/ys_views_basic/src/Plugin/Field/FieldWidget/ViewsBasicDefaultWidget.php index 44bd08f26..cffe1caea 100644 --- a/web/profiles/custom/yalesites_profile/modules/custom/ys_views_basic/src/Plugin/Field/FieldWidget/ViewsBasicDefaultWidget.php +++ b/web/profiles/custom/yalesites_profile/modules/custom/ys_views_basic/src/Plugin/Field/FieldWidget/ViewsBasicDefaultWidget.php @@ -323,8 +323,8 @@ public function formElement( '#title' => $this->t('Match Content That Has'), // Set operator: "+" is "OR" and "," is "AND". '#options' => [ - '+' => $this->t('Can have any term listed in tags and categories'), - ',' => $this->t('Must have all terms listed in tags and categories'), + '+' => $this->t('Can have any term listed in include/exclude terms'), + ',' => $this->t('Must have all terms listed in include/exclude terms'), ], '#default_value' => ($items[$delta]->params) ? $this->viewsBasicManager->getDefaultParamValue('operator', $items[$delta]->params) : '+', '#attributes' => [