1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00

fix(app): use correct withCurrentUser wrapper [EE-5928] (#10040)

Co-authored-by: testa113 <testa113>
This commit is contained in:
Ali 2023-08-14 16:53:28 +12:00 committed by GitHub
parent 925a0d0a9a
commit 5862aa5dd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,6 @@ import {
ApplicationDetailsWidget,
ApplicationEventsDatatable,
} from '@/react/kubernetes/applications/DetailsView';
import { withUserProvider } from '@/react/test-utils/withUserProvider';
import { withFormValidation } from '@/react-tools/withFormValidation';
import { withCurrentUser } from '@/react-tools/withCurrentUser';
import { PlacementsDatatable } from '@/react/kubernetes/applications/ItemView/PlacementsDatatable';
@ -106,7 +105,7 @@ export const ngModule = angular
.component(
'applicationDetailsWidget',
r2a(
withUIRouter(withReactQuery(withUserProvider(ApplicationDetailsWidget))),
withUIRouter(withReactQuery(withCurrentUser(ApplicationDetailsWidget))),
[]
)
)