remove legal link

This commit is contained in:
2020-05-03 17:41:01 +02:00
committed by smuddy
parent 8b6ff52054
commit a64931cf18
3 changed files with 0 additions and 7 deletions

View File

@@ -12,7 +12,6 @@ export interface Song {
status: string;
legalType: string;
legalLink: string;
legalOwner: string;
legalOwnerId: string;

View File

@@ -71,11 +71,6 @@
</mat-select>
</mat-form-field>
<mat-form-field appearance="outline">
<mat-label>Rechteinhaber Link</mat-label>
<input formControlName="legalLink" matInput>
</mat-form-field>
<mat-form-field appearance="outline">
<mat-label>Rechteinhaber ID (z.B. CCLI Liednummer)</mat-label>
<input formControlName="legalOwnerId" matInput>

View File

@@ -22,7 +22,6 @@ export class EditService {
status: new FormControl(song.status ?? 'draft'),
legalType: new FormControl(song.legalType),
legalLink: new FormControl(song.legalLink),
legalOwner: new FormControl(song.legalOwner),
legalOwnerId: new FormControl(song.legalOwnerId),