From 0860686019053a24c384548f621c492343ab0eb2 Mon Sep 17 00:00:00 2001 From: DaX Date: Tue, 17 Jun 2025 23:30:27 +0200 Subject: [PATCH] UI improvements - Removed subtitle from header - Added vertical borders to table for better readability - Removed footer text - Cleaner, more minimal interface --- src/App.tsx | 10 ---------- src/components/FilamentTable.tsx | 32 ++++++++++++++++---------------- 2 files changed, 16 insertions(+), 26 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 7313f30..db542d5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -76,9 +76,6 @@ function App() { -

- Bambu Lab praćenje zaliha filamenata sinhronizovano sa Confluence -

@@ -90,13 +87,6 @@ function App() { /> - ); } diff --git a/src/components/FilamentTable.tsx b/src/components/FilamentTable.tsx index ac62bfe..17a0a3a 100644 --- a/src/components/FilamentTable.tsx +++ b/src/components/FilamentTable.tsx @@ -77,33 +77,33 @@ export const FilamentTable: React.FC = ({ filaments, loading handleSort('brand')} > Brend {sortField === 'brand' && (sortOrder === 'asc' ? '↑' : '↓')} handleSort('tip')} > Tip {sortField === 'tip' && (sortOrder === 'asc' ? '↑' : '↓')} handleSort('finish')} > Završna obrada {sortField === 'finish' && (sortOrder === 'asc' ? '↑' : '↓')} handleSort('boja')} > Boja {sortField === 'boja' && (sortOrder === 'asc' ? '↑' : '↓')} - Refill - Vakum - Otvoreno - Količina + Refill + Vakum + Otvoreno + Količina Cena @@ -125,16 +125,16 @@ export const FilamentTable: React.FC = ({ filaments, loading color: textColor }} > - {filament.brand} - {filament.tip} - {filament.finish} - + {filament.brand} + {filament.tip} + {filament.finish} + - {filament.refill} - {filament.vakum} - {filament.otvoreno} - {filament.kolicina} + {filament.refill} + {filament.vakum} + {filament.otvoreno} + {filament.kolicina} {filament.cena} );