File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @workflow/web-shared " : patch
3+ ---
4+
5+ Increase compatibility for node16 moduleResolution when used for direct imports
Original file line number Diff line number Diff line change 1111 "access" : " public"
1212 },
1313 "license" : " Apache-2.0" ,
14+ "main" : " ./dist/index.js" ,
15+ "types" : " ./dist/index.d.ts" ,
1416 "exports" : {
1517 "." : {
1618 "types" : " ./dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ export const WorkflowTraceViewer = ({
3131 env,
3232 isLoading,
3333 error,
34+ height = 800 ,
3435} : {
3536 run : WorkflowRun ;
3637 steps : Step [ ] ;
@@ -39,6 +40,7 @@ export const WorkflowTraceViewer = ({
3940 env : EnvMap ;
4041 isLoading ?: boolean ;
4142 error ?: Error | null ;
43+ height ?: number ;
4244} ) => {
4345 const [ now , setNow ] = useState ( ( ) => new Date ( ) ) ;
4446
@@ -176,7 +178,7 @@ export const WorkflowTraceViewer = ({
176178 customSpanEventClassNameFunc = { getCustomSpanEventClassName }
177179 customPanelComponent = { < WorkflowDetailPanel env = { env } /> }
178180 >
179- < TraceViewerTimeline height = { 800 } trace = { trace } withPanel />
181+ < TraceViewerTimeline height = { height } trace = { trace } withPanel />
180182 </ TraceViewerContextProvider >
181183 </ div >
182184 ) ;
You can’t perform that action at this time.
0 commit comments