Skip to content
Snippets Groups Projects

3023322 - Contextual Links Style Update

7 unresolved threads
2 files
+ 41
6
Compare changes
  • Side-by-side
  • Inline
Files
2
  • d78321e6
    Issue #3247619 by Lendude, danflanagan8, FiNeX, beatrizrodrigues: "Place a... · d78321e6
    catch authored
    Issue #3247619 by Lendude, danflanagan8, FiNeX, beatrizrodrigues: "Place a colon after the label" not working on grouping field label on views
    
    (cherry picked from commit 8afba834)
@@ -601,7 +601,8 @@ public function renderGrouping($records, $groupings = [], $group_rendered = NULL
if (isset($this->view->field[$field])) {
$group_content = $this->getField($index, $field);
if ($this->view->field[$field]->options['label']) {
$group_content = $this->view->field[$field]->options['label'] . ': ' . $group_content;
$delimiter = $this->view->field[$field]->options['element_label_colon'] ? ': ' : ' ';
$group_content = $this->view->field[$field]->options['label'] . $delimiter . $group_content;
}
if ($rendered) {
$grouping = (string) $group_content;
Loading