fix: add missing ban icon and fix products tab loading

- Add 'ban' icon to icons.js for empty state displays
- Fix products tab to load when no vendor filter is selected

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-25 00:11:00 +01:00
parent 1a962dc6d1
commit 5a7098c137
2 changed files with 3 additions and 1 deletions

View File

@@ -160,7 +160,8 @@ function adminMarketplaceLetzshop() {
marketplaceLetzshopLog.info('Tab changed to:', newTab);
if (newTab === 'jobs' && this.selectedVendor) {
await this.loadJobs();
} else if (newTab === 'products' && this.selectedVendor) {
} else if (newTab === 'products') {
// Load products for selected vendor or all Letzshop products
await this.loadProducts();
} else if (newTab === 'orders') {
await this.loadOrders();