From: colemanw Date: Fri, 17 Nov 2023 14:17:39 +0000 (-0500) Subject: SearchKit - Fix missing label on group concat distinct dropdown X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6c08ceedac358f10a3f5f2997d4f6ec2f014874b;p=civicrm-core.git SearchKit - Fix missing label on group concat distinct dropdown --- 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,