Skip to content

Commit

Permalink
Merge pull request #70 from mprofitl/master
Browse files Browse the repository at this point in the history
Datasource: "Filter by Groups" clickable again
  • Loading branch information
michael-e authored Nov 19, 2019
2 parents 8c7f18c + 6656912 commit db84dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-sources/datasource.storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static function buildEditor(XMLElement $wrapper, array &$errors = array()
$groups = $storage->getGroups();

if (!empty($groups)) {
$tags = new XMLElement('ul', null, array('class' => 'tags'));
$tags = new XMLElement('ul', null, array('class' => 'tags', 'data-interactive' => 'data-interactive'));
foreach ($groups as $group) {
$tags->appendChild(new XMLElement('li', $group));
}
Expand Down

0 comments on commit db84dac

Please sign in to comment.