* refactor to colocate and simplify * fix(insights): text size to match portainer views --------- Co-authored-by: testa113 <testa113>
14 lines
516 B
TypeScript
14 lines
516 B
TypeScript
import angular from 'angular';
|
|
|
|
import { r2a } from '@/react-tools/react2angular';
|
|
import { EdgeKeyDisplay } from '@/react/portainer/environments/ItemView/EdgeKeyDisplay';
|
|
import { KVMControl } from '@/react/portainer/environments/KvmView/KVMControl';
|
|
|
|
export const environmentsModule = angular
|
|
.module('portainer.app.react.components.environments', [])
|
|
.component('edgeKeyDisplay', r2a(EdgeKeyDisplay, ['edgeKey']))
|
|
.component(
|
|
'kvmControl',
|
|
r2a(KVMControl, ['deviceId', 'server', 'token'])
|
|
).name;
|