Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BugFix][Web] Fix web page show #3138

Merged
merged 2 commits into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix_web_page_show
  • Loading branch information
zackyoungh committed Feb 4, 2024
commit 1460795b92f3f1dc138a92179c884d28fa923dae
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