changeset 2667f4f88d50 in sao:5.6
details: https://hg.tryton.org/sao?cmd=changeset;node=2667f4f88d50
description:
Do not override page icon with text
issue9578
review296181002
(grafted from 0e62c2943fee958a0c2aaacc8787993480a7e331)
diffstat:
src/view/form.js | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (14 lines):
diff -r 204284cc8f70 -r 2667f4f88d50 src/view/form.js
--- a/src/view/form.js Wed Sep 02 19:14:13 2020 +0200
+++ b/src/view/form.js Sat Sep 12 01:25:35 2020 +0200
@@ -777,8 +777,8 @@
'data-toggle': 'tab',
'href': '#' + tab_id
})
- .append(img)
- .text(text))
+ .text(text)
+ .prepend(img))
.appendTo(this.nav);
pane.append(tab).appendTo(this.panes);
if (!this.selected) {