From 7e98364401c824d8d4460b38e9be4ebdcdbd217d Mon Sep 17 00:00:00 2001 From: Alex Bozarth Date: Thu, 13 Feb 2020 14:35:42 -0800 Subject: [PATCH] Add pipeline icon to tab for pipeline editor 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 66385e534..9cf9afecf 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; } }