diff --git a/ui/component/tag/view.jsx b/ui/component/tag/view.jsx index 10ea23e2a..2dfb552f7 100644 --- a/ui/component/tag/view.jsx +++ b/ui/component/tag/view.jsx @@ -25,6 +25,11 @@ export default function Tag(props: Props) { title = type === 'add' ? __('Add tag') : __('Remove tag'); } + let iconRight = type !== 'link' && type !== 'large' && (type === 'remove' ? ICONS.REMOVE : ICONS.ADD); + if (type === 'flow') { + iconRight = null; + } + return (