File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
lib/live_debugger/app/debugger/web/components Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ defmodule LiveDebugger.App.Debugger.Web.Components.Pages do
1313 alias LiveDebugger.App.Debugger.Web.LiveComponents.NodeBasicInfo
1414 alias LiveDebugger.App.Debugger.ComponentsTree.Web.ComponentsTreeLive
1515 alias LiveDebugger.App.Debugger.NodeState.Web.NodeStateLive
16+ alias LiveDebugger.App.Debugger.Streams.Web.StreamsLive
17+
1618 alias LiveDebugger.App.Debugger.NestedLiveViewLinks.Web.NestedLiveViewLinksLive
1719 alias LiveDebugger.App.Debugger.AsyncJobs.Web.AsyncJobsLive
1820 alias LiveDebugger.Structs.LvProcess
@@ -33,7 +35,7 @@ defmodule LiveDebugger.App.Debugger.Web.Components.Pages do
3335 assigns = assign ( assigns , :sidebar_id , @ node_inspector_sidebar_id )
3436
3537 ~H"""
36- < div class = "flex flex-col h-full overflow-x-auto w-full scrollbar-main " >
38+ < div class = "flex flex-col h-full overflow-x-auto w-max scrollbar-main " >
3739 <%= render_slot ( @ sidebar ) %>
3840
3941 < div class = "flex flex-col w-full gap-4 p-8 overflow-y-auto " >
@@ -59,6 +61,14 @@ defmodule LiveDebugger.App.Debugger.Web.Components.Pages do
5961 lv_process = { @ lv_process }
6062 node_id = { @ node_id }
6163 />
64+ < StreamsLive . live_render
65+ id = "streams-list "
66+ class = "flex "
67+ socket = { @ socket }
68+ lv_process = { @ lv_process }
69+ node_id = { @ node_id }
70+ />
71+
6272 < CallbackTracingWeb.NodeTracesLive . live_render
6373 id = "traces-list "
6474 class = "flex "
You can’t perform that action at this time.
0 commit comments