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

Fix Safari blank page when clicking on modular pipelines #1488

Merged
merged 3 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Please follow the established format:
- Include the ID number for the related PR (or PRs) in parentheses
-->


# Release 6.3.5

## Major features and improvements
Expand All @@ -18,6 +19,7 @@ Please follow the established format:
- Fix broken SVG/PNG exports in light theme. (#1463)
- Fix dataset and global toolbar error with standalone React component (#1351)
- Fix `ImportError` as kedro-datasets is now lazily loaded (#1481).
- Fix issue of encountering a blank page in Safari when interacting with modular pipelines. (#1488)

# Release 6.3.4

Expand Down
5 changes: 4 additions & 1 deletion src/components/flowchart/draw.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,10 @@ export const drawEdges = function (changed) {
const updateEdges = this.el.edges;
const enterEdges = this.el.edges.enter().append('g');
const exitEdges = this.el.edges.exit();
const allEdges = this.el.edges.merge(enterEdges).merge(exitEdges);
const allEdges = this.el.edges
.merge(enterEdges)
.merge(exitEdges)
.filter((edge) => edge);

if (changed('edges', 'focusMode', 'inputOutputDataNodes')) {
enterEdges.append('path');
Expand Down