1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Tools: Apply "curly" eslint rule

This commit is contained in:
Laurent Cozic
2020-03-13 23:57:34 +00:00
parent e2e55b6e08
commit e399474b4e
10 changed files with 47 additions and 30 deletions

View File

@@ -73,10 +73,12 @@ class HtmlToHtml {
this.cache_.put(cacheKey, html, 1000 * 60 * 10);
if (options.bodyOnly) return {
html: html,
pluginAssets: [],
};
if (options.bodyOnly) {
return {
html: html,
pluginAssets: [],
};
}
let cssStrings = noteStyle(theme, options);