Merge pull request #12856 from systimotic/fix/bug-reporting-indentation

Fix closing backticks indentation on bug report
pull/12969/head
Samuel Plumppu 2017-01-29 22:20:57 +01:00 committed by GitHub
commit 3ebfb05171
1 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,3 @@
import dedent from 'dedent';
import types from '../redux/types';
import { closeBugModal } from '../redux/actions';
@ -12,13 +10,15 @@ function filesToMarkdown(files = {}) {
}
const fileName = moreThenOneFile ? `\\ file: ${file.contents}` : '';
const fileType = file.ext;
return fileString + dedent`
\`\`\`${fileType}
${fileName}
${file.contents}
\`\`\`
\n
`;
return fileString +
'\`\`\`' +
fileType +
'\n' +
fileName +
'\n' +
file.contents +
'\n' +
'\`\`\`\n\n';
}, '\n');
}