fix: LMS Title
Shows default company name if LMS title not set
diff --git a/erpnext/www/lms.py b/erpnext/www/lms.py
index 9d02e52..2e056d5 100644
--- a/erpnext/www/lms.py
+++ b/erpnext/www/lms.py
@@ -31,8 +31,10 @@
"""
Returns portal details from Education Settings Doctype. This contains the Title and Description for LMS amoung other things.
"""
+ from erpnext import get_default_company
+
settings = frappe.get_doc("Education Settings")
- title = settings.portal_title
+ title = settings.portal_title or get_default_company()
description = settings.description
return dict(title=title, description=description)