From 5d8589561c6a953691b3edb0b16d8b899e72e1c7 Mon Sep 17 00:00:00 2001 From: Devin Chasanoff Date: Fri, 24 Apr 2026 16:38:09 -0400 Subject: [PATCH] fix(@angular/cli): fix broken img ref in ai-tutor replacing the existing link with `INSERT_IMAGE_URL` makes the model insert a working link or the user can insert themselves Fixes #32908 --- .../cli/src/commands/mcp/resources/ai-tutor.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/angular/cli/src/commands/mcp/resources/ai-tutor.md b/packages/angular/cli/src/commands/mcp/resources/ai-tutor.md index 13433446247a..86719d3aabff 100644 --- a/packages/angular/cli/src/commands/mcp/resources/ai-tutor.md +++ b/packages/angular/cli/src/commands/mcp/resources/ai-tutor.md @@ -660,7 +660,7 @@ touch src/app/mock-recipes.ts id: 1, name: 'Spaghetti Carbonara', description: 'A classic Italian pasta dish.', - imgUrl: '[https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara](https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara)', + imgUrl: 'INSERT_IMAGE_URL', ingredients: [ { name: 'Spaghetti', quantity: 200, unit: 'g' }, { name: 'Guanciale', quantity: 100, unit: 'g' }, @@ -673,7 +673,7 @@ touch src/app/mock-recipes.ts id: 2, name: 'Caprese Salad', description: 'A simple and refreshing Italian salad.', - imgUrl: '[https://via.placeholder.com/300x200.png?text=Caprese+Salad](https://via.placeholder.com/300x200.png?text=Caprese+Salad)', + imgUrl: 'INSERT_IMAGE_URL', ingredients: [ { name: 'Tomatoes', quantity: 4, unit: 'each' }, { name: 'Fresh Mozzarella', quantity: 200, unit: 'g' }, @@ -717,7 +717,7 @@ touch src/app/mock-recipes.ts id: 1, name: 'Spaghetti Carbonara', description: 'A classic Italian pasta dish.', - imgUrl: '[https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara](https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara)', + imgUrl: 'INSERT_IMAGE_URL', isFavorite: true, ingredients: [ { name: 'Spaghetti', quantity: 200, unit: 'g' }, @@ -731,7 +731,7 @@ touch src/app/mock-recipes.ts id: 2, name: 'Caprese Salad', description: 'A simple and refreshing Italian salad.', - imgUrl: '[https://via.placeholder.com/300x200.png?text=Caprese+Salad](https://via.placeholder.com/300x200.png?text=Caprese+Salad)', + imgUrl: 'INSERT_IMAGE_URL', isFavorite: false, ingredients: [ { name: 'Tomatoes', quantity: 4, unit: 'each' }, @@ -786,8 +786,7 @@ touch src/app/mock-recipes.ts name: 'Spaghetti Carbonara', description: 'A classic Italian pasta dish.', authorEmail: 'mario@italy.com', // Add this - imgUrl: - '[https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara](https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara)', + imgUrl: 'INSERT_IMAGE_URL', isFavorite: true, ingredients: [ { name: 'Spaghetti', quantity: 200, unit: 'g' },