From 4f34a78f7feb00c4fa4f6fcff696518149c2bf95 Mon Sep 17 00:00:00 2001 From: Prabhat Khera <91852476+prabhat-org@users.noreply.github.com> Date: Mon, 22 May 2023 10:17:11 +1200 Subject: [PATCH] fix(ui): fix beta alert EE-5498 #8968 --- app/docker/react/components/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/docker/react/components/index.ts b/app/docker/react/components/index.ts index 64c3ec583..67ce16b1a 100644 --- a/app/docker/react/components/index.ts +++ b/app/docker/react/components/index.ts @@ -15,6 +15,7 @@ import { HealthStatus } from '@/react/docker/containers/ItemView/HealthStatus'; import { GpusList } from '@/react/docker/host/SetupView/GpusList'; import { GpusInsights } from '@/react/docker/host/SetupView/GpusInsights'; import { InsightsBox } from '@/react/components/InsightsBox'; +import { BetaAlert } from '@/react/portainer/environments/update-schedules/common/BetaAlert'; export const componentsModule = angular .module('portainer.docker.react.components', []) @@ -64,4 +65,5 @@ export const componentsModule = angular 'className', ]) ) + .component('betaAlert', r2a(BetaAlert, ['className', 'message', 'isHtml'])) .component('gpusInsights', r2a(GpusInsights, [])).name;