Fix selector names.

This commit is contained in:
Jesse Brault 2026-01-11 13:37:45 -06:00
parent 4feb840327
commit b66f290d84
2 changed files with 2 additions and 2 deletions

View File

@ -38,5 +38,5 @@
/>
}
<div [innerHTML]="recipe.text"></div>
<app-comments-list [recipeUsername]="recipe.owner.username" [recipeSlug]="recipe.slug" />
<app-recipe-comments-list [recipeUsername]="recipe.owner.username" [recipeSlug]="recipe.slug" />
</article>

View File

@ -7,7 +7,7 @@ import { RecipeComments } from '../../models/RecipeComment.model';
import { DateTimeFormatPipe } from '../../pipes/dateTimeFormat.pipe';
@Component({
selector: 'app-comments-list',
selector: 'app-recipe-comments-list',
imports: [ReactiveFormsModule, DateTimeFormatPipe],
templateUrl: './recipe-comments-list.html',
styleUrl: './recipe-comments-list.css',