From 6c08ceedac358f10a3f5f2997d4f6ec2f014874b Mon Sep 17 00:00:00 2001 From: colemanw Date: Fri, 17 Nov 2023 09:17:39 -0500 Subject: [PATCH] SearchKit - Fix missing label on group concat distinct dropdown --- Civi/Api4/Query/SqlFunctionGROUP_CONCAT.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Civi/Api4/Query/SqlFunctionGROUP_CONCAT.php b/Civi/Api4/Query/SqlFunctionGROUP_CONCAT.php index a4254ae72a..cc1fd222d5 100644 --- a/Civi/Api4/Query/SqlFunctionGROUP_CONCAT.php +++ b/Civi/Api4/Query/SqlFunctionGROUP_CONCAT.php @@ -25,7 +25,7 @@ class SqlFunctionGROUP_CONCAT extends SqlFunction { protected static function params(): array { return [ [ - 'flag_before' => ['' => NULL, 'DISTINCT' => ts('Distinct Value'), 'UNIQUE' => ts('Unique Record')], + 'flag_before' => ['' => ts('All'), 'DISTINCT' => ts('Distinct Value'), 'UNIQUE' => ts('Unique Record')], 'max_expr' => 1, 'must_be' => ['SqlField', 'SqlFunction', 'SqlEquation'], 'optional' => FALSE, -- 2.25.1