Skip to content

Commit

Permalink
Fix: metadata syntax highlighting (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome authored Mar 1, 2021
1 parent 20f6724 commit 9d705d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/views/query-response/response/ResponseDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ResponseDisplay = (properties: any) => {

switch (contentType) {
case ContentType.XML:
return <Monaco body={formatXml(body)} language={ContentType.XML} readOnly={true} height={height} />;
return <Monaco body={formatXml(body)} language={ContentType.HTML} readOnly={true} height={height} />;

case ContentType.HTML:
return <Monaco body={body} language={ContentType.HTML} readOnly={true} height={height} />;
Expand Down

0 comments on commit 9d705d6

Please sign in to comment.