17 lines
662 B
Markdown
17 lines
662 B
Markdown
# F-089 — Implementer evidence
|
|
|
|
## Change
|
|
|
|
Updated the active-product link in `project/apps/admin/src/app/(dashboard)/products/page.tsx`:
|
|
|
|
- Before: `http://192.168.18.93:3003/productos/${p.slug}`
|
|
- After: `http://192.168.18.93:3003/products/${p.slug}`
|
|
|
|
The link still opens in a new tab and keeps `rel="noopener noreferrer"` and click propagation behavior unchanged.
|
|
|
|
## Validation
|
|
|
|
- `cd project/apps/admin && npx tsc --noEmit` → exit 0
|
|
- `cd project/apps/admin && npx eslint 'src/app/(dashboard)/products/page.tsx'` → 0 errors (3 pre-existing warnings)
|
|
- Search confirms the old `3003/productos/${p.slug}` link is absent from the admin product listing.
|