tryton-sao 7.8.1 → 7.8.3

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 CHANGED
@@ -1,4 +1,14 @@
1
1
 
2
+ Version 7.8.3 - 2026-01-15
3
+ --------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
7
+ Version 7.8.2 - 2026-01-02
8
+ --------------------------
9
+ * Bug fixes (see mercurial logs for details)
10
+
11
+
2
12
  Version 7.8.1 - 2025-12-20
3
13
  --------------------------
4
14
  * Bug fixes (see mercurial logs for details)
package/COPYRIGHT CHANGED
@@ -1,7 +1,7 @@
1
1
  Copyright (C) 2012-2025 Nicolas Évrard.
2
- Copyright (C) 2012-2025 Cédric Krier.
2
+ Copyright (C) 2012-2026 Cédric Krier.
3
3
  Copyright (C) 2012-2014 Bertrand Chenal.
4
- Copyright (C) 2012-2025 B2CK SPRL.
4
+ Copyright (C) 2012-2026 B2CK SPRL.
5
5
  Copyright (C) 2019 Jitbit.
6
6
  Copyright (C) 2013 Thomas Park
7
7
  Copyright (C) 2020-2021 Maxime Richez
@@ -3,7 +3,7 @@
3
3
 
4
4
  /* eslint-disable no-redeclare */
5
5
  var Sao = {
6
- __version__: '7.8.0',
6
+ __version__: '7.8.3',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
@@ -6942,21 +6942,22 @@ var Sao = {
6942
6942
  'white-space': 'pre-wrap',
6943
6943
  'word-break': 'break-all',
6944
6944
  }));
6945
- alert_.append(jQuery('<p/>').append(jQuery('<a/>', {
6946
- 'class': 'btn btn-default',
6947
- role: 'button',
6948
- 'data-toggle': 'collapse',
6949
- 'data-target': '#error-detail',
6950
- 'aria-expanded': false,
6951
- 'aria-controls': '#error-detail',
6952
- }).text(Sao.i18n.gettext("Details"))));
6953
6945
  if (details) {
6954
- alert_.append(jQuery('<p/>', {
6955
- 'class': 'collapse',
6956
- id: 'error-detail',
6957
- }).append(jQuery('<pre/>', {
6958
- 'class': 'pre-scrollable',
6959
- }).text(details)));
6946
+ alert_.append(
6947
+ jQuery('<p/>').append(jQuery('<a/>', {
6948
+ 'class': 'btn btn-default',
6949
+ role: 'button',
6950
+ 'data-toggle': 'collapse',
6951
+ 'data-target': '#error-detail',
6952
+ 'aria-expanded': false,
6953
+ 'aria-controls': '#error-detail',
6954
+ }).text(Sao.i18n.gettext("Details"))))
6955
+ .append(jQuery('<p/>', {
6956
+ 'class': 'collapse',
6957
+ id: 'error-detail',
6958
+ }).append(jQuery('<pre/>', {
6959
+ 'class': 'pre-scrollable',
6960
+ }).text(details)));
6960
6961
  }
6961
6962
  jQuery('<a/>', {
6962
6963
  'class': 'btn btn-link',
@@ -23804,6 +23805,7 @@ function eval_pyson(value){
23804
23805
  view_ids.shift();
23805
23806
  }
23806
23807
  cell.click(event => {
23808
+ event.preventDefault();
23807
23809
  event.stopPropagation();
23808
23810
  var params = {};
23809
23811
  params.model = this.attributes.relation;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "tryton-sao",
3
3
  "title": "sao",
4
4
  "description": "Tryton webclient",
5
- "version": "7.8.1",
5
+ "version": "7.8.3",
6
6
  "homepage": "https://www.tryton.org/",
7
7
  "author": {
8
8
  "name": "Tryton"
package/src/common.js CHANGED
@@ -3639,21 +3639,22 @@
3639
3639
  'white-space': 'pre-wrap',
3640
3640
  'word-break': 'break-all',
3641
3641
  }));
3642
- alert_.append(jQuery('<p/>').append(jQuery('<a/>', {
3643
- 'class': 'btn btn-default',
3644
- role: 'button',
3645
- 'data-toggle': 'collapse',
3646
- 'data-target': '#error-detail',
3647
- 'aria-expanded': false,
3648
- 'aria-controls': '#error-detail',
3649
- }).text(Sao.i18n.gettext("Details"))));
3650
3642
  if (details) {
3651
- alert_.append(jQuery('<p/>', {
3652
- 'class': 'collapse',
3653
- id: 'error-detail',
3654
- }).append(jQuery('<pre/>', {
3655
- 'class': 'pre-scrollable',
3656
- }).text(details)));
3643
+ alert_.append(
3644
+ jQuery('<p/>').append(jQuery('<a/>', {
3645
+ 'class': 'btn btn-default',
3646
+ role: 'button',
3647
+ 'data-toggle': 'collapse',
3648
+ 'data-target': '#error-detail',
3649
+ 'aria-expanded': false,
3650
+ 'aria-controls': '#error-detail',
3651
+ }).text(Sao.i18n.gettext("Details"))))
3652
+ .append(jQuery('<p/>', {
3653
+ 'class': 'collapse',
3654
+ id: 'error-detail',
3655
+ }).append(jQuery('<pre/>', {
3656
+ 'class': 'pre-scrollable',
3657
+ }).text(details)));
3657
3658
  }
3658
3659
  jQuery('<a/>', {
3659
3660
  'class': 'btn btn-link',
package/src/sao.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  /* eslint-disable no-redeclare */
5
5
  var Sao = {
6
- __version__: '7.8.0',
6
+ __version__: '7.8.3',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
package/src/view/tree.js CHANGED
@@ -2782,6 +2782,7 @@
2782
2782
  view_ids.shift();
2783
2783
  }
2784
2784
  cell.click(event => {
2785
+ event.preventDefault();
2785
2786
  event.stopPropagation();
2786
2787
  var params = {};
2787
2788
  params.model = this.attributes.relation;