From bfdf972a5d09ae3391c36e903d49fbde64297cd8 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sat, 31 Dec 2022 10:26:47 -0500 Subject: [PATCH] Add code kind to Quick Fix action --- playground/src/Editor/SourceEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/src/Editor/SourceEditor.tsx b/playground/src/Editor/SourceEditor.tsx index c6d86bc301..146b448217 100644 --- a/playground/src/Editor/SourceEditor.tsx +++ b/playground/src/Editor/SourceEditor.tsx @@ -57,7 +57,7 @@ export default function SourceEditor({ .filter((check) => check.fix) .map((check) => ({ title: check.fix - ? check.fix.message ?? `Fix ${check.code}` + ? `${check.code}: ${check.fix.message}` ?? `Fix ${check.code}` : "Autofix", id: `fix-${check.code}`, kind: "quickfix",