Merge PR #2235 into 13.0

Signed-off-by etobella
This commit is contained in:
OCA-git-bot
2022-06-22 10:20:09 +00:00

View File

@@ -1,6 +1,7 @@
odoo.define("web_view_calendar_list.CalendarListView", function(require) {
"use strict";
var AbstractView = require("web.AbstractView");
var CalendarView = require("web.CalendarView");
var core = require("web.core");
var CalendarListController = require("web_view_calendar_list.CalendarListController");
@@ -13,7 +14,8 @@ odoo.define("web_view_calendar_list.CalendarListView", function(require) {
var CalendarListView = CalendarView.extend({
display_name: _lt("Calendar List"),
icon: "fa-calendar-check-o",
config: _.extend(CalendarView.prototype.config, {
viewType: "calendar_list",
config: _.extend(AbstractView.prototype.config, {
Model: CalendarListModel,
Controller: CalendarListController,
Renderer: CalendarListRenderer,