From 15a6aeb99839171c4813c35924d342d855ccb939 Mon Sep 17 00:00:00 2001 From: InSync Date: Wed, 19 Mar 2025 17:10:59 +0700 Subject: [PATCH] [red-knot] Add missing space between error message and lint code in playground (#16840) --- playground/knot/src/Editor/Diagnostics.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/knot/src/Editor/Diagnostics.tsx b/playground/knot/src/Editor/Diagnostics.tsx index 13e63c71b2..5d4301d974 100644 --- a/playground/knot/src/Editor/Diagnostics.tsx +++ b/playground/knot/src/Editor/Diagnostics.tsx @@ -88,7 +88,7 @@ function Items({ > {diagnostic.message()} - {id != null && `(${id})`} [Ln {startLine}, Col {startColumn}] + {id != null && ` (${id})`} [Ln {startLine}, Col {startColumn}]