From 0aef7d5d81255b45bbeaf597c69e8aad77da9256 Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Thu, 25 Dec 2025 00:12:55 +0100 Subject: [PATCH] fix: show Products tab without vendor filter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove x-if="selectedVendor" condition from Products tab button and panel so products are visible when no vendor is selected. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/templates/admin/marketplace-letzshop.html | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/app/templates/admin/marketplace-letzshop.html b/app/templates/admin/marketplace-letzshop.html index 37daeffb..7cfd5573 100644 --- a/app/templates/admin/marketplace-letzshop.html +++ b/app/templates/admin/marketplace-letzshop.html @@ -122,9 +122,7 @@ {% call tabs_nav(tab_var='activeTab') %} - + {{ tab_button('products', 'Products', tab_var='activeTab', icon='cube') }} {{ tab_button('orders', 'Orders', tab_var='activeTab', icon='shopping-cart', count_var='orderStats.pending') }} {{ tab_button('exceptions', 'Exceptions', tab_var='activeTab', icon='exclamation-circle', count_var='exceptionStats.pending') }} {% endcall %} - - + + {{ tab_panel('products', tab_var='activeTab') }} + {% include 'admin/partials/letzshop-products-tab.html' %} + {{ endtab_panel() }} {{ tab_panel('orders', tab_var='activeTab') }}