fix(ui): fix beta alert EE-5498 #8968

pull/8989/head
Prabhat Khera 2023-05-22 10:17:11 +12:00 committed by GitHub
parent f96e7ff434
commit 4f34a78f7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ import { HealthStatus } from '@/react/docker/containers/ItemView/HealthStatus';
import { GpusList } from '@/react/docker/host/SetupView/GpusList'; import { GpusList } from '@/react/docker/host/SetupView/GpusList';
import { GpusInsights } from '@/react/docker/host/SetupView/GpusInsights'; import { GpusInsights } from '@/react/docker/host/SetupView/GpusInsights';
import { InsightsBox } from '@/react/components/InsightsBox'; import { InsightsBox } from '@/react/components/InsightsBox';
import { BetaAlert } from '@/react/portainer/environments/update-schedules/common/BetaAlert';
export const componentsModule = angular export const componentsModule = angular
.module('portainer.docker.react.components', []) .module('portainer.docker.react.components', [])
@ -64,4 +65,5 @@ export const componentsModule = angular
'className', 'className',
]) ])
) )
.component('betaAlert', r2a(BetaAlert, ['className', 'message', 'isHtml']))
.component('gpusInsights', r2a(GpusInsights, [])).name; .component('gpusInsights', r2a(GpusInsights, [])).name;