bill 7 달 전
부모
커밋
6146376c74
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/tagging/style-type-select.vue

+ 1 - 1
src/views/tagging/style-type-select.vue

@@ -63,7 +63,7 @@ const getItems = (types = styleTypes): any => {
         children: "children" in item ? getItems(item.children) : null,
       };
     })
-    .filter((item) => !props.count || item.count);
+    .filter((item) => !props.count || item.count || item.key === allType.id);
 };
 const getCurrentItem = (type: number, all = items.value): any => {
   for (const item of all) {