9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-19 15:09:18 +00:00

fix json property description on vscode

This commit is contained in:
Julian Krings
2025-09-02 22:09:32 +02:00
parent d1c307865d
commit eb184983de

View File

@@ -569,7 +569,7 @@ public class SchemaBuilder {
.replace("</h>", "");
String hDesc = d.toString("<br>");
prop.put("type", type);
prop.put("description", d.toString("\n"));
prop.put("description", desc);
prop.put("x-intellij-html-description", hDesc);
return buildSnippet(prop, k.getType());
}