move push notification setup out of an App.vue Notification and into a component

This commit is contained in:
2024-11-18 17:00:06 -07:00
parent 6dc44b2494
commit 75fb4da42d
5 changed files with 491 additions and 506 deletions

View File

@@ -49,7 +49,7 @@ export default class ContactNameDialog extends Vue {
async open(
title?: string,
message?: string,
saveCallback?: (name: string) => void,
saveCallback?: (name?: string) => void,
cancelCallback?: () => void,
) {
this.cancelCallback = cancelCallback || this.cancelCallback;