1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

fix(edge/group): show tag selector when no tags [EE-4924] (#8368)

This commit is contained in:
Chaim Lev-Ari 2023-01-23 11:05:23 +05:30 committed by GitHub
parent 8dec95c2cd
commit eff6ec9df9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',