When cropping an image the scroll will enlarge or shrink the image.
Is it possible to turn this off?
It looks like it may be the zoomable = false or maybe :zoomable = "false" ??
perhaps in FormField.vue
<vue-cropper
v-if="field.croppable"
v-show="imgSrc"
class="mb-4"
ref='cropper'
:view-mode="1"
:aspect-ratio="field.aspectRatio || NaN"
:src="imgSrc"
>
</vue-cropper>
When cropping an image the scroll will enlarge or shrink the image.
Is it possible to turn this off?
It looks like it may be the zoomable = false or maybe :zoomable = "false" ??
perhaps in
FormField.vue