mirror of https://github.com/portainer/portainer
fix(app): use correct withCurrentUser wrapper [EE-5928] (#10041)
Co-authored-by: testa113 <testa113>pull/10054/head
parent
20c6965ce0
commit
f5cc245c63
|
@ -16,7 +16,6 @@ import {
|
||||||
ApplicationSummaryWidget,
|
ApplicationSummaryWidget,
|
||||||
ApplicationDetailsWidget,
|
ApplicationDetailsWidget,
|
||||||
} from '@/react/kubernetes/applications/DetailsView';
|
} from '@/react/kubernetes/applications/DetailsView';
|
||||||
import { withUserProvider } from '@/react/test-utils/withUserProvider';
|
|
||||||
import { withFormValidation } from '@/react-tools/withFormValidation';
|
import { withFormValidation } from '@/react-tools/withFormValidation';
|
||||||
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
||||||
|
|
||||||
|
@ -104,7 +103,7 @@ export const ngModule = angular
|
||||||
.component(
|
.component(
|
||||||
'applicationDetailsWidget',
|
'applicationDetailsWidget',
|
||||||
r2a(
|
r2a(
|
||||||
withUIRouter(withReactQuery(withUserProvider(ApplicationDetailsWidget))),
|
withUIRouter(withReactQuery(withCurrentUser(ApplicationDetailsWidget))),
|
||||||
[]
|
[]
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue