[IMP] runbot: open frontend_url in a new tab

This commit is contained in:
Christophe Monniez 2023-05-31 12:40:12 +02:00 committed by xdo
parent 430a526b5c
commit ffe12182ab

View File

@ -54,7 +54,7 @@ var FrontendUrl = relational_fields.FieldMany2One.extend({
this._super.apply(this, arguments);
var link = ''
if (this.route) {
link = ' <a href="'+this.route+'" ><i class="external_link fa fa-fw o_button_icon fa-external-link "/></a>'
link = ' <a href="'+this.route+'" target="_blank"><i class="external_link fa fa-fw o_button_icon fa-external-link "/></a>'
}
this.$el.html('<span>' + this.$el.html() + link + '<span>')
},