We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e1105 commit 5b111d8Copy full SHA for 5b111d8
src/Services/EDA/KiCadHelper.php
@@ -66,6 +66,10 @@ public function getCategories(): array
66
$secure_class_name = $this->tagGenerator->getElementTypeCacheTag(Category::class);
67
$item->tag($secure_class_name);
68
69
+ //Invalidate the cache on part changes (as the visibility depends on parts, and the parts can change)
70
+ $secure_class_name = $this->tagGenerator->getElementTypeCacheTag(Part::class);
71
+ $item->tag($secure_class_name);
72
+
73
//If the category depth is smaller than 0, create only one dummy category
74
if ($this->category_depth < 0) {
75
return [
0 commit comments