소스 검색

Ignore lib files

Tatiana Inama 7 년 전
부모
커밋
3ef656fbe6
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      .gitignore
  2. 1 1
      js/vademecum.js

+ 1 - 0
.gitignore

@@ -1 +1,2 @@
 node_modules
+lib

+ 1 - 1
js/vademecum.js

@@ -1211,7 +1211,7 @@ const Category = (categoryName, products) => (
     </thead>
     <tbody>
       {
-        products.filter(p => p.name !== "R3epair Eye Contour").map((p, i) => (
+        products.map((p, i) => (
           <tr><td>
             { Product(p, i) }
           </td></tr>