Add toolbar separator (#4890)

* Add option to add toolbar separator after toolbar component
This commit is contained in:
kisantia
2019-04-08 15:27:18 -07:00
committed by GitHub
parent e6faef27ab
commit ada0966832
4 changed files with 16 additions and 4 deletions

View File

@@ -428,7 +428,8 @@ class ToolbarContainerBuilder extends GenericContainerBuilder<azdata.ToolbarCont
let componentWrapper = toolbarComponent.component as ComponentWrapper;
return new InternalItemConfig(componentWrapper, {
title: toolbarComponent.title
title: toolbarComponent.title,
toolbarSeparatorAfter: toolbarComponent.toolbarSeparatorAfter
});
}