From d04df856ff1c3efb45972551a3cd36afbb5da9b1 Mon Sep 17 00:00:00 2001 From: Jitendra Gundaniya <38945204+jitu5@users.noreply.github.com> Date: Wed, 16 Aug 2023 11:54:56 +0100 Subject: [PATCH 1/2] Fix: Sidebar search width fix for longer text query (#1489) * Fix: Sidebar search width fix for longer text query Signed-off-by: Jitendra Gundaniya * Fix for long word without space. Signed-off-by: Jitendra Gundaniya * Release note text line order updated Signed-off-by: Jitendra Gundaniya --------- Signed-off-by: Jitendra Gundaniya --- RELEASE.md | 5 +++-- src/components/ui/search-bar/search-input/search-input.scss | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index fae46a37e..bedbdb7b5 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -5,12 +5,13 @@ Please follow the established format: - Use present tense (e.g. 'Add new feature') - Include the ID number for the related PR (or PRs) in parentheses --> + +# Release 6.3.5 + ## Major features and improvements - Add support for displaying dataset statistics in the metadata panel. (#1472) -# Release 6.3.5 - ## Bug fixes and other changes - Fix incorrect rendering of datasets in modular pipelines. (#1439) diff --git a/src/components/ui/search-bar/search-input/search-input.scss b/src/components/ui/search-bar/search-input/search-input.scss index 8f1de7055..4a1a8c7b0 100644 --- a/src/components/ui/search-bar/search-input/search-input.scss +++ b/src/components/ui/search-bar/search-input/search-input.scss @@ -95,7 +95,7 @@ $padding-top-bottom: 7px; &::before { content: attr(data-value); overflow: hidden; - white-space: pre; + word-break: break-all; background-color: transparent; color: transparent; transition: background-color $duration-input-transition; From 50ebfe616d8295d0a5e9aeff5da5dc56ebe74922 Mon Sep 17 00:00:00 2001 From: vladimir-mck <106236933+vladimir-mck@users.noreply.github.com> Date: Wed, 16 Aug 2023 13:07:40 +0200 Subject: [PATCH 2/2] Fix Safari blank page when clicking on modular pipelines (#1488) * Filter out undefined edges Signed-off-by: Vladimir * Update RELEASE.md --------- Signed-off-by: Vladimir Co-authored-by: Tynan DeBold --- RELEASE.md | 2 ++ src/components/flowchart/draw.js | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index bedbdb7b5..1a351414c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 @@ -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 diff --git a/src/components/flowchart/draw.js b/src/components/flowchart/draw.js index bb3246dd5..d221bf4d2 100644 --- a/src/components/flowchart/draw.js +++ b/src/components/flowchart/draw.js @@ -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');