Skip to content

Commit

Permalink
Merge pull request #30789 from AlainBenbassat/tags_label_in_profile
Browse files Browse the repository at this point in the history
fixes incorrect display of tag field label in profiles
  • Loading branch information
demeritcowboy committed Aug 2, 2024
2 parents 5627349 + 75a9f48 commit 9978e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Contact/Form/Edit/TagsAndGroups.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static function buildQuickForm(
$tags = CRM_Core_BAO_Tag::getColorTags('civicrm_contact');

if (!empty($tags)) {
$form->add('select2', 'tag', ts('Tag(s)'), $tags, $isRequired, ['class' => 'huge', 'placeholder' => ts('- select -'), 'multiple' => TRUE]);
$form->add('select2', 'tag', $tagName, $tags, $isRequired, ['class' => 'huge', 'placeholder' => ts('- select -'), 'multiple' => TRUE]);
}

// build tag widget
Expand Down

0 comments on commit 9978e44

Please sign in to comment.