SearchKit - Fix missing label on group concat distinct dropdown
authorcolemanw <coleman@civicrm.org>
Fri, 17 Nov 2023 14:17:39 +0000 (09:17 -0500)
committercolemanw <coleman@civicrm.org>
Fri, 17 Nov 2023 14:17:39 +0000 (09:17 -0500)
Civi/Api4/Query/SqlFunctionGROUP_CONCAT.php

index a4254ae72a154c59af8a451418a9b51e8b5216d5..cc1fd222d57dcc2a0f700cf0c3db53356306cc82 100644 (file)
@@ -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,