Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dysTOS committed Oct 30, 2023
1 parent df8e471 commit de0069d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pipes/full-name.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Mitglied } from "../models/Mitglied";
name: "fullName",
})
export class FullNamePipe implements PipeTransform {
transform(value: Mitglied, options?: {}): string {
transform(value: Mitglied): string {
if (!value) return "";

const name = value.vorname + " " + value.zuname;
Expand Down

0 comments on commit de0069d

Please sign in to comment.