diff --git a/src/pages/FixedAsset/Card/FixedAssetDescriptor.vue b/src/pages/FixedAsset/Card/FixedAssetDescriptor.vue index 8212a3485..989980663 100644 --- a/src/pages/FixedAsset/Card/FixedAssetDescriptor.vue +++ b/src/pages/FixedAsset/Card/FixedAssetDescriptor.vue @@ -31,6 +31,10 @@ const showEditPhotoForm = ref(false); const toggleEditPictureForm = () => { showEditPhotoForm.value = !showEditPhotoForm.value; }; + +const handlePhotoUpdated = (evt = false) => { + image.value.reload(evt); +};