From f470b0116811062fd0250be0a47eb897c8823355 Mon Sep 17 00:00:00 2001 From: Ian Macabulos Date: Fri, 16 Jan 2026 12:47:04 +0800 Subject: [PATCH 01/10] fix: clairify the helptext that markdown is supported with a warning about HTML indentation (#6747) --- src/lang/en.json | 2 +- src/pages/StatusPage.vue | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/lang/en.json b/src/lang/en.json index ea1ea35a8..4c8ebffa8 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -39,7 +39,7 @@ "General Monitor Type": "General Monitor Type", "Passive Monitor Type": "Passive Monitor Type", "Specific Monitor Type": "Specific Monitor Type", - "markdownSupported": "Markdown syntax supported", + "markdownSupported": "Markdown syntax supported. If using HTML, avoid leading spaces to prevent formatting issues.", "pauseDashboardHome": "Pause", "Pause": "Pause", "Name": "Name", diff --git a/src/pages/StatusPage.vue b/src/pages/StatusPage.vue index 1de5c5063..db9fbfb89 100644 --- a/src/pages/StatusPage.vue +++ b/src/pages/StatusPage.vue @@ -25,9 +25,7 @@ class="form-control" data-testid="description-input" > -
- {{ $t("markdownSupported") }} -
+
{{ $t("markdownSupported") }}
@@ -39,9 +37,7 @@ class="form-control" data-testid="footer-text-input" > -
- {{ $t("markdownSupported") }} -
+
{{ $t("markdownSupported") }}
From 777c2529158df9b46a0628423c49901a99b4e177 Mon Sep 17 00:00:00 2001 From: Maybe <96062022+maybe-but-fly@users.noreply.github.com> Date: Sat, 17 Jan 2026 16:56:55 +0900 Subject: [PATCH 02/10] fix(ui): refreshing the page if pressing enter in the search, horizontal scrolling the monitor lit on mobile/tablets and aligning items in the monitor list (#6751) --- src/components/MonitorList.vue | 8 +++----- src/components/MonitorListItem.vue | 5 +++-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/components/MonitorList.vue b/src/components/MonitorList.vue index b541a8ad8..098c07286 100644 --- a/src/components/MonitorList.vue +++ b/src/components/MonitorList.vue @@ -1,5 +1,5 @@