bill vor 7 Monaten
Ursprung
Commit
6146376c74
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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) {