fix mobile editor email (#660)
This commit is contained in:
parent
75f82b3bc7
commit
5bc0d3ccc8
|
|
@ -150,7 +150,7 @@ export default {
|
||||||
const breakpoints = useBreakpoints(breakpointsTailwind)
|
const breakpoints = useBreakpoints(breakpointsTailwind)
|
||||||
const isVisible = ref(breakpoints.smaller("md"))
|
const isVisible = ref(breakpoints.smaller("md"))
|
||||||
watch(isVisible, (newValue) => {
|
watch(isVisible, (newValue) => {
|
||||||
if (newValue) {
|
if (newValue && form?.value && form?.value?.id) {
|
||||||
opnFetch('/open/forms/' + form.value.id + '/mobile-editor-email')
|
opnFetch('/open/forms/' + form.value.id + '/mobile-editor-email')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue