mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-25 09:09:34 -05:00
Fix link base targets for the tile view
Node details now always open in the detail area instead of the same column.
This commit is contained in:
parent
146ad0171f
commit
e3e24fd29a
1 changed files with 3 additions and 6 deletions
|
|
@ -21,7 +21,7 @@ class TileRenderer extends Renderer
|
|||
'tiles',
|
||||
$this->howMany()
|
||||
),
|
||||
'data-base-target' => '_self',
|
||||
'data-base-target' => '_next',
|
||||
)
|
||||
);
|
||||
|
||||
|
|
@ -81,14 +81,11 @@ class TileRenderer extends Renderer
|
|||
protected function addNewNode()
|
||||
{
|
||||
$div = Container::create(
|
||||
array('class' => 'addnew')
|
||||
array('class' => 'addnew', 'data-base-target' => '_self')
|
||||
);
|
||||
|
||||
$actions = Container::create(
|
||||
array(
|
||||
'class' => 'actions',
|
||||
'data-base-target' => '_self'
|
||||
)
|
||||
array('class'=> 'actions')
|
||||
);
|
||||
|
||||
$link = Link::create(
|
||||
|
|
|
|||
Loading…
Reference in a new issue