Explorar el Código

fix fail (eslint)

yusuketk hace 7 años
padre
commit
f3777afb08
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/server/models/page.js

+ 1 - 1
src/server/models/page.js

@@ -321,7 +321,7 @@ module.exports = function(crowi) {
     });
 
     // create tag and relations
-    newTags.forEach(async (tag) => {
+    newTags.forEach(async(tag) => {
       const setTag = await Tag.findOrCreate(tag);
       PageTagRelation.createIfNotExist(page._id, setTag._id);
     });