How to show only one flows

I run node-red in express, how to make it show only one flows on the ui. Thanks

If only one of the flow tabs is visible, how would you edit the others?

Hi. I want to only display the flows to the id on the url, and hide the process from.Editing other flows can open multiple browser tabs.

I don't believe that is possible.

I implemented it with css but it's not perfect

.red-ui-tab.ui-draggable.ui-draggable-handle{
    display: none ;

}
.red-ui-tab.active.ui-draggable.ui-draggable-handle{
    display: block ;

}

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.