Skip to content

Commit

Permalink
Fix: Space indent in the Mango Query editor doesn't match the indent …
Browse files Browse the repository at this point in the history
…guides (#1388)

Issue: #1313
  • Loading branch information
Antonio-Maranhao committed Feb 9, 2023
1 parent f8c3d11 commit 53009f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/addons/documents/mango/mango.helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const getIndexName = ({def, type}) => {
};

const formatCode = (code) => {
return JSON.stringify(code, null, 3);
return JSON.stringify(code, null, 2);
};

const getIndexContent = (doc) => {
Expand Down

0 comments on commit 53009f5

Please sign in to comment.