correct linting

This commit is contained in:
2019-11-24 15:59:42 +01:00
committed by smuddy
parent 87aeb62a2a
commit d3f8cca4b1
17 changed files with 36 additions and 36 deletions

View File

@@ -7,12 +7,12 @@ export class SongTypePipe implements PipeTransform {
transform(songTypeKey: string): string {
switch (songTypeKey) {
case "Worship":
return "Anbetung";
case "Praise":
return "Lobpreis";
case 'Worship':
return 'Anbetung';
case 'Praise':
return 'Lobpreis';
default:
return ""
return ''
}
}