3
0
Fork 0

[15.0][FIX] web_remember_tree_column_width: use correct module name

this fixes scss file not found error after installing the module
14.0
Mihran Thalhath 2022-08-28 12:45:48 +05:30 committed by Studio73
parent 3aedf1dd89
commit ed9bea23e9
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
"website": "https://github.com/OCA/web", "website": "https://github.com/OCA/web",
"license": "LGPL-3", "license": "LGPL-3",
"category": "Extra Tools", "category": "Extra Tools",
"version": "15.0.1.0.0", "version": "15.0.1.0.1",
"maintainers": [ "maintainers": [
"frahikLV", "frahikLV",
"luisg123v", "luisg123v",
@ -16,8 +16,8 @@
"data": [], "data": [],
"assets": { "assets": {
"web.assets_backend": [ "web.assets_backend": [
"remember_tree_column_width/static/src/js/list_renderer.js", "web_remember_tree_column_width/static/src/js/list_renderer.js",
"remember_tree_column_width/static/src/scss/main.scss", "web_remember_tree_column_width/static/src/scss/main.scss",
], ],
}, },
"installable": True, "installable": True,

View File

@ -1,4 +1,4 @@
odoo.define("remember_tree_column_width.ListRenderer", function (require) { odoo.define("web_remember_tree_column_width.ListRenderer", function (require) {
"use strict"; "use strict";
const ListRenderer = require("web.ListRenderer"); const ListRenderer = require("web.ListRenderer");