mirror of
https://github.com/bringout/oca-warehouse.git
synced 2026-04-24 02:02:00 +02:00
8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
/** @odoo-module */
|
|
|
|
import {ViewButton} from "@web/views/view_button/view_button";
|
|
import {patch} from "@web/core/utils/patch";
|
|
|
|
patch(ViewButton, "Add hotkey to button", {
|
|
props: [...ViewButton.props, "hotkey?"],
|
|
});
|