mirror of
https://github.com/bringout/oca-server-auth.git
synced 2026-04-19 08:52:04 +02:00
Initial commit: OCA Server Auth packages (29 packages)
This commit is contained in:
commit
3ed80311c4
1325 changed files with 127292 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import {ListRenderer} from "@web/views/list/list_renderer";
|
||||
import {patch} from "@web/core/utils/patch";
|
||||
|
||||
patch(ListRenderer.prototype, "vault", {
|
||||
getCellTitle(column) {
|
||||
const _super = this._super.bind(this);
|
||||
const attrs = column.rawAttrs || {};
|
||||
if (attrs.widget !== "vault_field") return _super(...arguments);
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue