takeru0001 5 лет назад
Родитель
Сommit
3666d74a95

+ 1 - 1
src/client/js/components/DuplicatedPathsTable.jsx

@@ -14,7 +14,7 @@ function DuplicatedPathsTable(props) {
   const { path } = pageContainer.state;
 
   return (
-    <table className="table table-bordered grw-compare-duplicated-page-table">
+    <table className="table table-bordered grw-duplicated-page-table">
       <thead>
         <tr className="d-flex">
           <th className="w-50">{t('original_path')}</th>

+ 0 - 5
src/client/styles/scss/_create-page.scss

@@ -18,9 +18,4 @@
       max-height: 200px;
     }
   }
-  .grw-compare-duplicated-page-table {
-    tbody {
-      max-height: 200px;
-    }
-  }
 }

+ 6 - 0
src/client/styles/scss/_modal.scss

@@ -2,3 +2,9 @@
 .modal-dialog.grw-modal-expanded {
   @include expand-modal-fullscreen(true, true);
 }
+
+.grw-duplicated-page-table {
+  tbody {
+    max-height: 200px;
+  }
+}