mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 16:49:34 -05:00
Don't show edit actions for the unbound nodes tile
This commit is contained in:
parent
7c491496fa
commit
7cb7f40e87
1 changed files with 3 additions and 1 deletions
|
|
@ -278,7 +278,9 @@ class NodeTile extends BaseElement
|
|||
));
|
||||
}
|
||||
|
||||
if (! $this->renderer->getBusinessProcess()->getMetadata()->canModify()) {
|
||||
if (! $this->renderer->getBusinessProcess()->getMetadata()->canModify()
|
||||
|| $node->getName() === '__unbound__'
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue