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

refactor(account): migrate access tokens table to react [EE-4701] (#10669)

This commit is contained in:
Chaim Lev-Ari 2024-04-09 08:17:43 +03:00 committed by GitHub
parent 48aab77058
commit 3f3db75d85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 219 additions and 249 deletions

View file

@ -8,7 +8,6 @@ import { AnnotationsBeTeaser } from '@/react/kubernetes/annotations/AnnotationsB
import { withFormValidation } from '@/react-tools/withFormValidation';
import { GroupAssociationTable } from '@/react/portainer/environments/environment-groups/components/GroupAssociationTable';
import { AssociatedEnvironmentsSelector } from '@/react/portainer/environments/environment-groups/components/AssociatedEnvironmentsSelector';
import { HelmRepositoryDatatable } from '@/react/portainer/account/AccountView/HelmRepositoryDatatable';
import { withControlledInput } from '@/react-tools/withControlledInput';
import {
@ -241,13 +240,6 @@ export const ngModule = angular
.component(
'associatedEndpointsSelector',
r2a(withReactQuery(AssociatedEnvironmentsSelector), ['onChange', 'value'])
)
.component(
'helmRepositoryDatatable',
r2a(
withUIRouter(withReactQuery(withCurrentUser(HelmRepositoryDatatable))),
[]
)
);
export const componentsModule = ngModule.name;