Explorar el Código

modified from yarn lint

白石誠 hace 5 años
padre
commit
d37d69df4c
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. 8 1
      src/client/js/components/PageDuplicateModal.jsx

+ 8 - 1
src/client/js/components/PageDuplicateModal.jsx

@@ -135,7 +135,14 @@ const PageDuplicateModal = (props) => {
               {isDuplicateRecursively && subordinatedPaths.map((duplicatedNewPath) => {
                   // ToDo: The "true" statement below will be modified by task GW3503
                   if (true) {
-                    return <li className="duplicate-exist" key={duplicatedNewPath}>{duplicatedNewPath}: { t('modal_duplicate.label.Same page already exists') }</li>;
+                    return (
+                      <li
+                        className="duplicate-exist"
+                        key={duplicatedNewPath}
+                      >
+                        {duplicatedNewPath}: { t('modal_duplicate.label.Same page already exists') }
+                      </li>
+                    );
                   }
                   return <li key={duplicatedNewPath}>{duplicatedNewPath}</li>;
                 })