Skip to content

Commit

Permalink
fix json object layout
Browse files Browse the repository at this point in the history
  • Loading branch information
kchobantonov committed Dec 20, 2023
1 parent 0d1a6af commit 6b21c03
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,14 @@ public InputStream execute(CommandContext commandContext) {
result.append(new String(schema.getBytes(), StandardCharsets.UTF_8));

if (uischema != null) {
result.append(",");
result.append(JSONObject.quote(uischemaResourcePath));
result.append(":");
result.append(new String(uischema.getBytes(), StandardCharsets.UTF_8));
}

if (i18n != null) {
result.append(",");
result.append(JSONObject.quote(i18nResourcePath));
result.append(":");
result.append(new String(i18n.getBytes(), StandardCharsets.UTF_8));
Expand Down

0 comments on commit 6b21c03

Please sign in to comment.