changeset 287382c0d95e in sao:default
details: https://hg.tryton.org/sao?cmd=changeset&node=287382c0d95e
description:
Use tab_domain when comparing tabs
issue10441
review381241002
diffstat:
src/tab.js | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (14 lines):
diff -r f9b71289bf69 -r 287382c0d95e src/tab.js
--- a/src/tab.js Fri Oct 22 00:33:34 2021 +0200
+++ b/src/tab.js Tue Oct 26 19:40:49 2021 +0200
@@ -755,7 +755,9 @@
JSON.stringify(attributes.context)) &&
(compare(
this.attributes.search_value || [],
- attributes.search_value || []))
+ attributes.search_value || [])) &&
+ (JSON.stringify(this.screen.attributes.tab_domain) ===
+ JSON.stringify(attributes.tab_domain))
);
},
_close_allowed: function() {