|
@@ -195,8 +195,8 @@ class MoveSignatureTool {
|
|
|
orgTargetData.isMoving = false;
|
|
|
this.saveSignature(me);
|
|
|
if (this.pageObj.items.length > 1) {
|
|
|
- for (let idx = 1; idx < this.pageObj.items.length; idx++) {
|
|
|
- const targetCell = this.pageObj.items[idx].signature_cells.find(item => item.signatureName === orgTargetData.signatureName);
|
|
|
+ for (let idx = 0; idx < this.pageObj.items.length; idx++) {
|
|
|
+ const targetCell = this.pageObj.items[idx].signature_cells.find(item => item.signatureName === orgTargetData.signatureName && item.signType === orgTargetData.signType);
|
|
|
if (targetCell) {
|
|
|
targetCell.area.Left = orgTargetData.area.Left;
|
|
|
targetCell.area.Right = orgTargetData.area.Right;
|