Skip to content

Commit aa7c1f3

Browse files
authored
Merge pull request #7345 from LibreSign/backport/7317/stable32
[stable32] Update field names in serializeVisibleElements to use producer & consumer names
2 parents d4d6d9e + 98a92b9 commit aa7c1f3

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/store/files.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -867,10 +867,11 @@ const _filesStore = defineStore('files', () => {
867867
}
868868
const coordinates = element.coordinates && typeof element.coordinates === 'object'
869869
? {
870-
x: element.coordinates.x,
871-
y: element.coordinates.y,
872-
w: element.coordinates.w,
873-
h: element.coordinates.h,
870+
page: element.coordinates.page,
871+
top: element.coordinates.top,
872+
left: element.coordinates.left,
873+
width: element.coordinates.width,
874+
height: element.coordinates.height,
874875
}
875876
: undefined
876877
return {

0 commit comments

Comments
 (0)