Skip to content

Commit ffe24ac

Browse files
committed
exclude status
1 parent 1c09608 commit ffe24ac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Tqdev/PhpCrudUi/Column/SpecificationService.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,9 @@ public function getMenu()
219219
$items = array();
220220
if (isset($this->definition['tags'])) {
221221
foreach ($this->definition['tags'] as $tag) {
222-
array_push($items, $tag['name']);
222+
if ($this->hasTable($tag['name'], 'list')) {
223+
array_push($items, $tag['name']);
224+
}
223225
}
224226
}
225227
return $items;

0 commit comments

Comments
 (0)