From a6bb036cebe01794d55ce5b1f0a5164fbd26040a Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Thu, 7 Dec 2023 20:35:29 -0700 Subject: [PATCH] fix name of new HelpNotificationsView class --- src/views/HelpNotificationsView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/HelpNotificationsView.vue b/src/views/HelpNotificationsView.vue index ce9c0a1..ed4458a 100644 --- a/src/views/HelpNotificationsView.vue +++ b/src/views/HelpNotificationsView.vue @@ -59,7 +59,7 @@ interface Notification { } @Component({ components: { QuickNav } }) -export default class Help extends Vue { +export default class HelpNotificationsView extends Vue { $notify!: (notification: Notification, timeout?: number) => void; }