11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
/** @odoo-module **/
|
|
|
|
import { WebClient } from "@web/webclient/webclient";
|
|
import { patch } from "web.utils";
|
|
|
|
patch(WebClient.prototype, "kolpolok_custom_title_and_favicon.WebClient", {
|
|
setup() {
|
|
this._super();
|
|
// this.title.setParts({ zopenerp: "JIKIMO" });
|
|
},
|
|
}); |