Skip to content

Commit

Permalink
[BugFix][Web] Fix web page show (#3138)
Browse files Browse the repository at this point in the history
Co-authored-by: zackyoungh <zackyoungh@users.noreply.github.com>
  • Loading branch information
zackyoungh and zackyoungh authored Feb 4, 2024
1 parent 1d1afb6 commit cfcaf43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public static StreamGraph getStreamGraph(JarSubmitParam submitParam, CustomTable
.setArguments(RunTimeUtil.handleCmds(submitParam.getArgs()))
.build();
Pipeline pipeline = PackagedProgramUtils.getPipelineFromProgram(program, configuration, 1, true);
program.close();
Assert.isTrue(pipeline instanceof StreamGraph, "can not translate");
return (StreamGraph) pipeline;
} catch (Exception e) {
Expand Down
3 changes: 2 additions & 1 deletion dinky-web/src/components/Sidebar/MovableSidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ const MovableSidebar: React.FC<MovableSidebarProps> = (props) => {
style={{
...style,
display: visible ? 'block' : 'none',
borderRadius: 5
borderRadius: 5,
backgroundColor: token.colorBgBase
}}
onResize={onResize}
onResizeStop={onResizeStop}
Expand Down

0 comments on commit cfcaf43

Please sign in to comment.