[hub] remove See All from non expandable sections
diff --git a/erpnext/public/js/hub/pages/Home.vue b/erpnext/public/js/hub/pages/Home.vue
index bba2e1d..4f9796d 100644
--- a/erpnext/public/js/hub/pages/Home.vue
+++ b/erpnext/public/js/hub/pages/Home.vue
@@ -13,7 +13,7 @@
<section-header>
<h4>{{ section.title }}</h4>
- <p :data-route="'marketplace/category/' + section.title">{{ 'See All' }}</p>
+ <p v-if="section.expandable" :data-route="'marketplace/category/' + section.title">{{ 'See All' }}</p>
</section-header>
<item-cards-container
@@ -71,6 +71,7 @@
this.sections.push({
title: __(category),
+ expandable: true,
items
});
});