Skip to content

Commit

Permalink
[16.0][MIG] base_export_async: Fix assets and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Coronel committed Jul 17, 2023
1 parent 7368fa8 commit a0fb5a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions base_export_async/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"assets": {
"web.assets_backend": [
"base_export_async/static/src/xml/base.xml",
"base_export_async/static/src/js/list_controller.js",
"base_export_async/static/src/js/data_export.js",
"base_export_async/static/src/js/list_controller.esm.js",
"base_export_async/static/src/js/data_export.esm.js",
],
},
"installable": True,
Expand Down
6 changes: 3 additions & 3 deletions base_export_async/static/src/js/list_controller.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import {download} from "@web/core/network/download";
import {ListController} from "@web/views/list/list_controller";
import {patch} from "@web/core/utils/patch";
import framework from "@web.framework";
import Dialog from "@web.Dialog";
import core from "@web.core";
const framework = require("web.framework");
const Dialog = require("web.Dialog");
const core = require("web.core");
const _t = core._t;

patch(ListController.prototype, "base_export_async", {
Expand Down

0 comments on commit a0fb5a9

Please sign in to comment.