fix: add missing icon imports v1.2.6
This commit is contained in:
@@ -1,8 +1,9 @@
|
|||||||
{
|
{
|
||||||
"version": "1.2.5",
|
"version": "1.2.6",
|
||||||
"last_build": "2026-04-11-1200",
|
"last_build": "2026-04-11-1206",
|
||||||
"commit": "c8f1a",
|
"commit": "d9e2a",
|
||||||
"changelog": [
|
"changelog": [
|
||||||
|
"v1.2.6: Hotfix - Added missing icon imports (Layers, ChevronDown)",
|
||||||
"v1.2.5: Synchronized icons across UI (Layers for Categories, Package for Item Types)",
|
"v1.2.5: Synchronized icons across UI (Layers for Categories, Package for Item Types)",
|
||||||
"v1.2.4: Offline LDAP auth support and UI affordance improvements (Dropdown chevrons, soft password dots)",
|
"v1.2.4: Offline LDAP auth support and UI affordance improvements (Dropdown chevrons, soft password dots)",
|
||||||
"v1.2.3: System-wide UI consistency (standardized font sizes, removed uppercase)",
|
"v1.2.3: System-wide UI consistency (standardized font sizes, removed uppercase)",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
### [2026-04-11 11:58] v1.2.5: UI Icon Synchronization
|
### [2026-04-11 12:05] v1.2.6: Hotfix - Missing Icon Imports
|
||||||
**Purpose:** Unified iconography across the system for better visual association. Substituted `Tag` with `Layers` for all Category references and added the green `Package` icon to all item listing instances. Refined AI Onboarding and Admin panels for total consistency.
|
**Purpose:** Fixed `ReferenceError: Layers is not defined` and `ChevronDown is not defined` errors by adding missing imports in `admin/page.tsx` and `app/page.tsx`.
|
||||||
**Modified Files:**
|
**Modified Files:**
|
||||||
- `frontend/app/inventory/page.tsx`
|
|
||||||
- `frontend/app/admin/page.tsx`
|
- `frontend/app/admin/page.tsx`
|
||||||
- `frontend/components/AdminOverlay.tsx`
|
- `frontend/app/page.tsx`
|
||||||
- `frontend/components/AIOnboarding.tsx`
|
|
||||||
- `VERSION.json`
|
- `VERSION.json`
|
||||||
|
|
||||||
|
### [2026-04-11 11:58] v1.2.5: UI Icon Synchronization
|
||||||
|
|
||||||
### [2026-04-11 11:45] v1.2.4: Offline Auth & UX Polish
|
### [2026-04-11 11:45] v1.2.4: Offline Auth & UX Polish
|
||||||
|
|
||||||
### [2026-04-11 11:30] v1.2.3: System-Wide UI Homogenization
|
### [2026-04-11 11:30] v1.2.3: System-Wide UI Homogenization
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
danielbedeleanu@Daniels-MacBook-Pro-14-M1.local.30836
|
|
||||||
@@ -20,7 +20,9 @@ import {
|
|||||||
Server,
|
Server,
|
||||||
Globe,
|
Globe,
|
||||||
Wifi,
|
Wifi,
|
||||||
WifiOff
|
WifiOff,
|
||||||
|
Layers,
|
||||||
|
ChevronDown
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
import { toast } from 'react-hot-toast';
|
import { toast } from 'react-hot-toast';
|
||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import {
|
|||||||
Wifi,
|
Wifi,
|
||||||
WifiOff,
|
WifiOff,
|
||||||
ChevronRight,
|
ChevronRight,
|
||||||
|
ChevronDown,
|
||||||
Edit2,
|
Edit2,
|
||||||
RefreshCw,
|
RefreshCw,
|
||||||
CloudOff,
|
CloudOff,
|
||||||
@@ -476,7 +477,7 @@ export default function Home() {
|
|||||||
|
|
||||||
<div>
|
<div>
|
||||||
<p className="text-lg font-medium">Tap to start scanning</p>
|
<p className="text-lg font-medium">Tap to start scanning</p>
|
||||||
<p className="text-sm text-slate-400">Scan barcodes to {mode.toUpperCase().replace('_', ' ')} items</p>
|
<p className="text-sm text-slate-400">Scan labels to {mode.replace('_', ' ')} items</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="w-full h-px bg-slate-800 my-2" />
|
<div className="w-full h-px bg-slate-800 my-2" />
|
||||||
|
|||||||
Reference in New Issue
Block a user