Skip to content

Commit

Permalink
Issue backdrop-contrib#28. Check if description is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
argiepiano committed Oct 3, 2023
1 parent 1c44772 commit 3f7b1f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/modify.vboaction.inc
Expand Up @@ -181,7 +181,7 @@ function views_bulk_operations_modify_vboaction_form($context, &$form_state) {
$form['properties'][$key] = array(
'#type' => $determined_type,
'#title' => $property['label'],
'#description' => $property['description'],
'#description' => !empty($property['description']) ? $property['description'] : '',
'#states' => array(
'visible' => array(
'#edit-properties-show-value-' . str_replace('_', '-', $key) => array('checked' => TRUE),
Expand Down

0 comments on commit 3f7b1f3

Please sign in to comment.