Skip to content

Commit 5ec6737

Browse files
committed
fix: bug fix in playground where audience string was set instead of array.
1 parent f789cf0 commit 5ec6737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playground/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ <h3 class="text-lg leading-6 font-medium text-gray-500">Actions</h3>
711711
},
712712
computed: {
713713
audience: function () {
714-
return [this.audienceInput]
714+
return this.audienceInput ? [this.audienceInput] : undefined
715715
},
716716
},
717717
created: async function () {

0 commit comments

Comments
 (0)