소스 검색

fix margin
move error msg contents into form section

Tatsuya Ise 2 년 전
부모
커밋
2327ae7c5d
1개의 변경된 파일6개의 추가작업 그리고 7개의 파일을 삭제
  1. 6 7
      apps/app/src/components/PageRenameModal.tsx

+ 6 - 7
apps/app/src/components/PageRenameModal.tsx

@@ -241,15 +241,14 @@ const PageRenameModal = (): JSX.Element => {
                 )}
             </form>
           </div>
+          { isTargetPageDuplicate && (
+            <p className="text-danger">Error: Target path is duplicated.</p>
+          ) }
+          { isMatchedWithUserHomepagePath && (
+            <p className="text-danger">Error: Cannot move to directory under /user page.</p>
+          ) }
         </div>
 
-        { isTargetPageDuplicate && (
-          <p className="text-danger">Error: Target path is duplicated.</p>
-        ) }
-        { isMatchedWithUserHomepagePath && (
-          <p className="text-danger">Error: Cannot move to directory under /user page.</p>
-        ) }
-
         { !isV5Compatible(page.meta) && (
           <>
             <div className="form-check form-check-warning">