We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5611e90 commit 634196cCopy full SHA for 634196c
src/stores/dialogStore.ts
@@ -1,4 +1,3 @@
1
-// @ts-strict-ignore
2
// We should consider moving to https://primevue.org/dynamicdialog/ once everything is in Vue.
3
// Currently we need to bridge between legacy app code and Vue app with a Pinia store.
4
@@ -41,7 +40,7 @@ export const useDialogStore = defineStore('dialog', {
41
40
}) {
42
this.isVisible = true
43
nextTick(() => {
44
- this.title = options.title
+ this.title = options.title ?? ''
45
this.headerComponent = options.headerComponent
46
? markRaw(options.headerComponent)
47
: null
0 commit comments