Skip to content

Commit

Permalink
fix: make avatar src required
Browse files Browse the repository at this point in the history
  • Loading branch information
GODrums committed Aug 7, 2024
1 parent 16daee5 commit 797883a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/app/ui/avatar/avatar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class AppAvatarComponent {
class = input<ClassValue>('');
size = input<AvatarVariants['size']>('default');

src = input<string>('');
src = input.required<string>();
alt = input<string>('');
imageClass = input<string>('');
fallback = input<string>('https://placehold.co/56');
Expand Down

0 comments on commit 797883a

Please sign in to comment.