Skip to content

Commit

Permalink
exclude status
Browse files Browse the repository at this point in the history
  • Loading branch information
mevdschee committed Mar 21, 2021
1 parent ffe24ac commit 7f0696a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -12734,7 +12734,9 @@ public function getMenu()
$items = array();
if (isset($this->definition['tags'])) {
foreach ($this->definition['tags'] as $tag) {
array_push($items, $tag['name']);
if ($this->hasTable($tag['name'], 'list')) {
array_push($items, $tag['name']);
}
}
}
return $items;
Expand Down

0 comments on commit 7f0696a

Please sign in to comment.