From 0c42eaf1d12dde54dc90b3bb36e3ba207da8d74a Mon Sep 17 00:00:00 2001 From: Charles-Henri Decultot Date: Tue, 16 Apr 2024 09:09:01 +0200 Subject: [PATCH] fix: Show titles by default --- erpnext/venue/doctype/item_booking/item_booking_calendar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/venue/doctype/item_booking/item_booking_calendar.js b/erpnext/venue/doctype/item_booking/item_booking_calendar.js index 03ba92f932..4669cbff2c 100644 --- a/erpnext/venue/doctype/item_booking/item_booking_calendar.js +++ b/erpnext/venue/doctype/item_booking/item_booking_calendar.js @@ -24,10 +24,10 @@ frappe.views.calendar["Item Booking"] = { filters: [["Item Booking", "status", "!=", "Cancelled"]], get_events_method: "erpnext.venue.doctype.item_booking.item_booking.get_events_for_calendar", calendar_print_config: { - no_title: true, + no_title: false, shown_filter: "item", Planning: { - no_title: true, + no_title: false, shown_filter: null, }, }, -- GitLab