diff --git a/backlog/features.json b/backlog/features.json index ee2710a..1b4a7a2 100644 --- a/backlog/features.json +++ b/backlog/features.json @@ -3244,13 +3244,15 @@ "Existing plain text descriptions still display", "verify.sh is green" ], - "status": "pending", + "status": "done", "created_at": "2026-08-19", "gates": { - "reviewer": false, - "security": false, - "qa": false - } + "reviewer": true, + "security": true, + "qa": true, + "close": true + }, + "completed_at": "2026-08-19T15:09:37Z" } ] } diff --git a/project/apps/admin/src/features/products/components/ProductEditor.tsx b/project/apps/admin/src/features/products/components/ProductEditor.tsx index 0a0f505..cedc85a 100644 --- a/project/apps/admin/src/features/products/components/ProductEditor.tsx +++ b/project/apps/admin/src/features/products/components/ProductEditor.tsx @@ -6,6 +6,7 @@ import { productsApi, brandsApi, categoriesApi } from '@/lib/api-client'; import { ImagesSection } from './sections/ImagesSection'; import { InventorySection } from './sections/InventorySection'; import { PricingSection } from './sections/PricingSection'; +import LexicalEditor from '@/features/cms/components/LexicalEditor'; interface ProductEditorProps { productId?: string; @@ -237,9 +238,11 @@ export function ProductEditor({ productId }: ProductEditorProps) {
-