diff --git a/frontend/src/pages/app/operations/inventory/InventoryPage.tsx b/frontend/src/pages/app/operations/inventory/InventoryPage.tsx index f176c9c1..9b118175 100644 --- a/frontend/src/pages/app/operations/inventory/InventoryPage.tsx +++ b/frontend/src/pages/app/operations/inventory/InventoryPage.tsx @@ -366,11 +366,13 @@ const InventoryPage: React.FC = () => { description="Controla el stock de ingredientes y materias primas" actions={[ { - id: "new", + id: "add-new-item", label: "Nuevo Artículo", variant: "primary" as const, icon: Plus, - onClick: handleNewItem + onClick: handleNewItem, + tooltip: "Agregar nuevo artículo al inventario", + size: "md" } ]} /> @@ -465,9 +467,14 @@ const InventoryPage: React.FC = () => {

Intenta ajustar la búsqueda o agregar un nuevo artículo al inventario

- )}