Skip to content

Commit

Permalink
[5.x] Fix JavaScript length error from Add Set button label (#10217)
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean authored May 29, 2024
1 parent 71b25c1 commit 28c6545
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class="btn-round flex items-center justify-center"
:class="{
'h-5 w-5': ! last,
'mr-2': label.length > 0,
'mr-2': label?.length > 0,
}"
@click="addSetButtonClicked"
>
Expand Down

0 comments on commit 28c6545

Please sign in to comment.