diff --git a/packages/ui/certd-client/src/components/index.ts b/packages/ui/certd-client/src/components/index.ts index ed9ea3e2..ca01c51e 100644 --- a/packages/ui/certd-client/src/components/index.ts +++ b/packages/ui/certd-client/src/components/index.ts @@ -13,13 +13,14 @@ import ExpiresTimeText from "./expires-time-text.vue"; import FileInput from "./file-input.vue"; import PemInput from "./pem-input.vue"; import { defineAsyncComponent } from "vue"; +import NotificationSelector from "../views/certd/notification/notification-selector/index.vue"; export default { install(app: any) { app.component( "CodeEditor", defineAsyncComponent(() => import("./code-editor/index.vue")) ); - + app.component("NotificationSelector", NotificationSelector); app.component("PiContainer", PiContainer); app.component("TextEditable", TextEditable); app.component("FileInput", FileInput); diff --git a/packages/ui/certd-client/src/views/certd/notification/notification-selector/index.vue b/packages/ui/certd-client/src/views/certd/notification/notification-selector/index.vue index a92524f9..1ac58c86 100644 --- a/packages/ui/certd-client/src/views/certd/notification/notification-selector/index.vue +++ b/packages/ui/certd-client/src/views/certd/notification/notification-selector/index.vue @@ -1,7 +1,7 @@