mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
refactor(kube/registries): migrate access table to react [EE-4706] (#10688)
This commit is contained in:
parent
f584bf3830
commit
a00cb951bc
8 changed files with 74 additions and 142 deletions
11
app/kubernetes/react/components/registries.tsx
Normal file
11
app/kubernetes/react/components/registries.tsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
import angular from 'angular';
|
||||
|
||||
import { r2a } from '@/react-tools/react2angular';
|
||||
import { AccessTable } from '@/react/kubernetes/cluster/RegistryAccessView/AccessTable';
|
||||
|
||||
export const registriesModule = angular
|
||||
.module('portainer.kubernetes.react.components.registries', [])
|
||||
.component(
|
||||
'kubeRegistryAccessTable',
|
||||
r2a(AccessTable, ['dataset', 'onRemove'])
|
||||
).name;
|
Loading…
Add table
Add a link
Reference in a new issue