changeset ce1d79f7e513 in sao:5.0
details: https://hg.tryton.org/sao?cmd=changeset&node=ce1d79f7e513
description:
        Missing call to record

        The backport dad823c23a5a should call record as it is not yet a 
descriptor in
        5.0 branch.

        issue10362
        review357971013
diffstat:

 src/view/form.js |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 96c7d07a3eed -r ce1d79f7e513 src/view/form.js
--- a/src/view/form.js  Mon Apr 12 20:54:03 2021 +0200
+++ b/src/view/form.js  Fri Apr 30 13:52:58 2021 +0200
@@ -3816,7 +3816,7 @@
             }
             value.done(function(data) {
                 var url, blob;
-                if (record !== this.record) {
+                if (record !== this.record()) {
                     return;
                 }
                 if (!data) {

Reply via email to