From 73354121453ad3d78f75817be419267324b7c6bf Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 4 Dec 2023 09:31:24 -0700 Subject: [PATCH] revert type complaint, which is opposite from previous suggestion, which 8-S --- src/views/ProjectViewView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ProjectViewView.vue b/src/views/ProjectViewView.vue index cb6cf97..0bd1471 100644 --- a/src/views/ProjectViewView.vue +++ b/src/views/ProjectViewView.vue @@ -625,7 +625,7 @@ export default class ProjectViewView extends Vue { } openOfferDialog() { - (this.$refs.customOfferDialog as typeof OfferDialog).open(); + (this.$refs.customOfferDialog as OfferDialog).open(); } }