Skip to content

Commit

Permalink
chore(@dpc-sdp/ripple-ui-forms): add comment to RplFormOption isChecked
Browse files Browse the repository at this point in the history
  • Loading branch information
lambry committed Jan 13, 2025
1 parent 08a4d13 commit 598146a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ const handleChange = (e: Event) => {
}
const isChecked = computed(() => {
// We're waiting for mount before using the supplied checked prop
// This is to get tests that check the initial checkbox state working in cypress
return isMounted.value ? props.checked : false
})
Expand Down

0 comments on commit 598146a

Please sign in to comment.