Display assistant only after drill down

Assistants are always displayed, whether subordinates are displayed or not. Is it possible to display assistants only when subordinates are also displayed?

Let's take an example :

In this view, the assistant is displayed, but if I go to parent i would like to see this :

Instead of this, I see that :

I hope this is clear enough :slight_smile:

Hi @Laurent,

If you use the Compact layout, please try adding the following custom CSS styles:

.poch-node__node-list-container .poch-node:has(.poch-node__group_assistant) .poch-node__assistants-container {
    display: none !important;
    position: absolute !important;
}

.poch-node__node-list-container .poch-node:has(.poch-node__group_assistant) .poch-node__lines svg path:first-child {
    display: none !important;
}

For the Classic layout, the following code should work:

.poch-node__node-list-container .poch-node:has(.poch-node__group_assistant) .poch-node__assistants-container {
    display: none !important;
    position: absolute !important;
}

It works perfectly. Thanks !

1 Like