From 8175448cc602793fe76b451665d7ab8243bd000f Mon Sep 17 00:00:00 2001 From: Alex Bozarth Date: Fri, 14 Feb 2020 17:35:27 -0800 Subject: [PATCH] Add pipeline icon to tab for pipeline editor (#261) Unlike other tabs, prior to this any pipeline editor tab was missing an icon --- packages/pipeline-editor/src/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/pipeline-editor/src/index.tsx b/packages/pipeline-editor/src/index.tsx index 266339599..f1812eb50 100644 --- a/packages/pipeline-editor/src/index.tsx +++ b/packages/pipeline-editor/src/index.tsx @@ -543,6 +543,7 @@ class PipelineEditorFactory extends ABCWidgetFactory { const content = new Canvas(props); const widget = new DocumentWidget({ content, context, node: document.createElement('div') }); widget.addClass(PIPELINE_CLASS); + widget.title.iconClass = PIPELINE_ICON_CLASS; return widget; } }