From 404d8562760593c43f2e1fa3e2e46fc0c1b95420 Mon Sep 17 00:00:00 2001 From: Igor Kulikov Date: Fri, 12 Jun 2026 19:57:57 +0300 Subject: [PATCH] style(iot-hub): add bottom margin to markdown doc-link buttons so they wrap cleanly --- .../modules/home/components/iot-hub/iot-hub-markdown.utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-markdown.utils.ts b/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-markdown.utils.ts index 6685a898f5..6db27ce352 100644 --- a/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-markdown.utils.ts +++ b/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-markdown.utils.ts @@ -54,7 +54,7 @@ export function resolveDocLinkPlaceholders( function buildDocLinkButton(url: string, text: string, icon: string): string { const safeUrl = escapeHtmlAttr(url); const safeText = escapeHtml(text); - return `` + + return `` + `${icon}${safeText}`; }