From eff6ec9df922ba7be929cb65a4c06332453b9010 Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Mon, 23 Jan 2023 11:05:23 +0530 Subject: [PATCH] fix(edge/group): show tag selector when no tags [EE-4924] (#8368) --- app/portainer/react/components/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/portainer/react/components/index.ts b/app/portainer/react/components/index.ts index fd71f8089..17f2b1dbe 100644 --- a/app/portainer/react/components/index.ts +++ b/app/portainer/react/components/index.ts @@ -45,7 +45,11 @@ export const componentsModule = angular .module('portainer.app.react.components', [customTemplatesModule]) .component( 'tagSelector', - r2a(withReactQuery(TagSelector), ['allowCreate', 'onChange', 'value']) + r2a(withUIRouter(withReactQuery(TagSelector)), [ + 'allowCreate', + 'onChange', + 'value', + ]) ) .component( 'beTeaserButton',