[Signature] Send guid when editing signature

This commit is contained in:
Julia Radzhabova 2021-02-19 11:42:49 +03:00
parent bf7eb0dd30
commit 8a4194eea8

View file

@ -164,6 +164,8 @@ define([
value = props.asc_getInstructions();
me.textareaInstructions.val(value ? value : '');
me.chDate.setValue(props.asc_getShowDate());
me._currentGuid = props.asc_getGuid();
}
},
@ -176,6 +178,7 @@ define([
props.asc_setEmail(me.inputEmail.getValue());
props.asc_setInstructions(me.textareaInstructions.val());
props.asc_setShowDate(me.chDate.getValue()=='checked');
(me._currentGuid!==undefined) && props.asc_setGuid(me._currentGuid);
return props;
},