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
15.0-ocabot-merge-pr-2789-by-pedrobaeza-bump-patch
Mihran Thalhath 2022-08-28 12:45:48 +05:30
parent e9e6c73557
commit 7c519eaa89
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
"website": "https://github.com/OCA/web",
"license": "LGPL-3",
"category": "Extra Tools",
"version": "15.0.1.0.0",
"version": "15.0.1.0.1",
"maintainers": [
"frahikLV",
"luisg123v",
@ -16,8 +16,8 @@
"data": [],
"assets": {
"web.assets_backend": [
"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/js/list_renderer.js",
"web_remember_tree_column_width/static/src/scss/main.scss",
],
},
"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";
const ListRenderer = require("web.ListRenderer");