takeru0001 5 lat temu
rodzic
commit
3282190878

+ 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-duplicated-page-table">
+    <table className="table table-bordered grw-duplicated-paths-table">
       <thead>
         <tr className="d-flex">
           <th className="w-50">{t('original_path')}</th>

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

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

+ 5 - 0
src/client/styles/scss/molecules/duplicated-paths-table.scss

@@ -0,0 +1,5 @@
+.grw-duplicated-paths-table {
+  tbody {
+    max-height: 200px;
+  }
+}