diff --git a/CHANGELOG.md b/CHANGELOG.md index d7d25e43a..996d05480 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,9 +40,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Fixed - ``: - - Code editor resets to initial value on every code editor instance re-init + - Code editor resets to initial value on every code editor instance re-init - `` - `hiddenInteractions` stay visible if they contain focused elements or opened overlays (e.g. context menus) +- `` + - do not create empty list items ### Changed diff --git a/src/cmem/react-flow/configuration/_colors-workflow.scss b/src/cmem/react-flow/configuration/_colors-workflow.scss index 2f2ab0d17..7ef9ac1d9 100644 --- a/src/cmem/react-flow/configuration/_colors-workflow.scss +++ b/src/cmem/react-flow/configuration/_colors-workflow.scss @@ -1,3 +1,4 @@ +$reactflow-color-project-node: #A5356E !default; // Cannot be part of a workflow but we have no other place atm to configure it $reactflow-color-dataset-node: #3a7896 !default; $reactflow-color-linking-node: #0097a7 !default; $reactflow-color-transform-node: #40a691 !default; @@ -10,12 +11,14 @@ $reactflow-color-replaceable-input: #faa854 !default; } .#{eccgui}-configuration--colors__react-flow-workflow { + --projectNode: #{$reactflow-color-project-node}; --datasetNode: #{$reactflow-color-dataset-node}; --linkingNode: #{$reactflow-color-linking-node}; --transformNode: #{$reactflow-color-transform-node}; --taskNode: #{$reactflow-color-task-node}; --workflowNode: #{$reactflow-color-workflow-node}; --replaceableInput: #{$reactflow-color-replaceable-input}; + --projectNodeBright: #{bright($reactflow-color-project-node)}; --datasetNodeBright: #{bright($reactflow-color-dataset-node)}; --linkingNodeBright: #{bright($reactflow-color-linking-node)}; --transformNodeBright: #{bright($reactflow-color-transform-node)}; diff --git a/src/components/Tag/TagList.tsx b/src/components/Tag/TagList.tsx index 64668e7dd..6aed6706c 100644 --- a/src/components/Tag/TagList.tsx +++ b/src/components/Tag/TagList.tsx @@ -10,11 +10,11 @@ function TagList({ children, className = "", label = "", ...otherProps }: TagLis const tagList = (
    {React.Children.map(children, (child, i) => { - return ( + return child ? (
  • {child}
  • - ); + ) : null; })}
);