changeset 0e62c2943fee in sao:default
details: https://hg.tryton.org/sao?cmd=changeset;node=0e62c2943fee
description:
        Do not override page icon with text

        issue9578
        review296181002
diffstat:

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

diffs (14 lines):

diff -r d5742068fd8d -r 0e62c2943fee src/view/form.js
--- a/src/view/form.js  Wed Sep 09 23:25:24 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) {

Reply via email to