Skip to content

Commit

Permalink
fix mobile editor email (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
chiragchhatrala authored Jan 6, 2025
1 parent 75f82b3 commit 5bc0d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/open/forms/components/FormEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default {
const breakpoints = useBreakpoints(breakpointsTailwind)
const isVisible = ref(breakpoints.smaller("md"))
watch(isVisible, (newValue) => {
if (newValue) {
if (newValue && form?.value && form?.value?.id) {
opnFetch('/open/forms/' + form.value.id + '/mobile-editor-email')
}
})
Expand Down

0 comments on commit 5bc0d3c

Please sign in to comment.