tryton-sao 7.4.23 → 7.4.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG +5 -0
- package/dist/tryton-sao.js +2 -1
- package/package.json +1 -1
- package/src/sao.js +1 -1
- package/src/view/tree.js +1 -0
package/CHANGELOG
CHANGED
package/dist/tryton-sao.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-redeclare */
|
|
5
5
|
var Sao = {
|
|
6
|
-
__version__: '7.4.
|
|
6
|
+
__version__: '7.4.24',
|
|
7
7
|
};
|
|
8
8
|
/* eslint-enable no-redeclare */
|
|
9
9
|
|
|
@@ -23385,6 +23385,7 @@ function eval_pyson(value){
|
|
|
23385
23385
|
view_ids.shift();
|
|
23386
23386
|
}
|
|
23387
23387
|
cell.click(event => {
|
|
23388
|
+
event.preventDefault();
|
|
23388
23389
|
event.stopPropagation();
|
|
23389
23390
|
var params = {};
|
|
23390
23391
|
params.model = this.attributes.relation;
|
package/package.json
CHANGED
package/src/sao.js
CHANGED