From e83734e0e46a99eb57718ddb664ae50f812216d5 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Wed, 12 Feb 2025 22:54:23 +0530 Subject: [PATCH] fix: misc ui fixes --- frontend/src/components/BatchCard.vue | 4 ++-- frontend/src/components/Modals/Settings.vue | 2 +- lms/lms/doctype/lms_payment/lms_payment.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/BatchCard.vue b/frontend/src/components/BatchCard.vue index e8dd78c7..fe9d7b01 100644 --- a/frontend/src/components/BatchCard.vue +++ b/frontend/src/components/BatchCard.vue @@ -8,7 +8,7 @@
{{ batch.seats_left }} @@ -20,7 +20,7 @@
{{ __('Sold Out') }}
diff --git a/frontend/src/components/Modals/Settings.vue b/frontend/src/components/Modals/Settings.vue index 6824b530..f4c11d4f 100644 --- a/frontend/src/components/Modals/Settings.vue +++ b/frontend/src/components/Modals/Settings.vue @@ -137,7 +137,7 @@ const tabsStructure = computed(() => { name: 'unsplash_access_key', description: 'Optional. If this is set, students can pick a cover image from the unsplash library for their profile page. https://unsplash.com/documentation#getting-started.', - type: 'text', + type: 'password', }, ], }, diff --git a/lms/lms/doctype/lms_payment/lms_payment.py b/lms/lms/doctype/lms_payment/lms_payment.py index 5173a653..187c2a9a 100644 --- a/lms/lms/doctype/lms_payment/lms_payment.py +++ b/lms/lms/doctype/lms_payment/lms_payment.py @@ -23,7 +23,7 @@ def send_payment_reminder(): incomplete_payments = frappe.get_all( "LMS Payment", {"payment_received": 0, "creation": [">", add_days(nowdate(), -1)]}, - fields=[ + [ "name", "member", "payment_for_document",