mirror of
https://github.com/bringout/oca-server-auth.git
synced 2026-04-19 00:32:00 +02:00
12 lines
372 B
JavaScript
12 lines
372 B
JavaScript
/** @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);
|
|
},
|
|
});
|