Skip to content

Commit 9c5618c

Browse files
[5.4] Show “[ None ]” when Field Group is unassigned in Fields list (joomla#45201)
1 parent f922cfc commit 9c5618c

File tree

1 file changed

+1
-1
lines changed
  • administrator/components/com_fields/tmpl/fields

1 file changed

+1
-1
lines changed

administrator/components/com_fields/tmpl/fields/default.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
<?php echo $this->escape($item->type); ?>
180180
</td>
181181
<td>
182-
<?php echo $this->escape($item->group_title); ?>
182+
<?php echo !empty($item->group_title) ? $this->escape($item->group_title) : '[ ' . Text::_('JNONE') . ' ]'; ?>
183183
</td>
184184
<td class="small d-none d-md-table-cell">
185185
<?php echo $this->escape($item->access_level); ?>

0 commit comments

Comments
 (0)