From 491ebea40d801154fed139a426b4f1bb568083c1 Mon Sep 17 00:00:00 2001 From: Rahul Agrawal Date: Sat, 21 Jun 2025 13:39:39 +0530 Subject: [PATCH 1/2] fix: print ol numbering --- frappe/public/scss/print.bundle.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frappe/public/scss/print.bundle.scss b/frappe/public/scss/print.bundle.scss index 8e0d3854317f..5b4f99ced0dc 100644 --- a/frappe/public/scss/print.bundle.scss +++ b/frappe/public/scss/print.bundle.scss @@ -51,3 +51,7 @@ .filter-row div { display: inline-block; } +// prevent order list from continued numbering +.ql-editor { + counter-reset: none; +} From 5761f24353ff2be8b2ee960416dac1b639a2b34e Mon Sep 17 00:00:00 2001 From: Rahul Agrawal Date: Sat, 21 Jun 2025 13:57:19 +0530 Subject: [PATCH 2/2] fix: update comment --- frappe/public/scss/print.bundle.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/scss/print.bundle.scss b/frappe/public/scss/print.bundle.scss index 5b4f99ced0dc..829d0dc2b2b2 100644 --- a/frappe/public/scss/print.bundle.scss +++ b/frappe/public/scss/print.bundle.scss @@ -51,7 +51,7 @@ .filter-row div { display: inline-block; } -// prevent order list from continued numbering +// prevent
    numbering conflicts .ql-editor { counter-reset: none; }