changeset 09a85a5a8ed6 in sao:default
details: https://hg.tryton.org/sao?cmd=changeset&node=09a85a5a8ed6
description:
        Set action attribute when running wizard from url

        issue11660
        review431461003
diffstat:

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

diffs (14 lines):

diff -r c341df9e419d -r 09a85a5a8ed6 src/sao.js
--- a/src/sao.js        Mon Aug 22 14:13:42 2022 +0200
+++ b/src/sao.js        Wed Sep 07 17:02:23 2022 +0200
@@ -535,8 +535,8 @@
         }
         function open_wizard(path) {
             var attributes = {};
-            attributes.name = path[0];
-            if (!attributes.name) {
+            attributes.action = path[0];
+            if (!attributes.action) {
                 return;
             }
             try {

Reply via email to