Skip to content

Commit f1048c5

Browse files
Fix tippy-singleton not applying prop-based options
1 parent 540c6b6 commit f1048c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TippySingleton.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const TippySingleton = defineComponent({
7878
},
7979
mounted() {
8080
this.$el._tippySingleton = this
81-
this.singleton = createSingleton(this.instances as TippyInstance[], this.extra)
81+
this.singleton = createSingleton(this.instances as TippyInstance[], this.tippyOptions)
8282
if (!this.enabled) {
8383
this.singleton.disable();
8484
}

0 commit comments

Comments
 (0)