store flags for songs

This commit is contained in:
2020-04-22 14:40:42 +02:00
committed by smuddy
parent 90ab0a76ae
commit 1231b69ff0
15 changed files with 91 additions and 16 deletions

View File

@@ -41,4 +41,9 @@ export class SongComponent implements OnInit {
}
public getFlags = (flags: string): string[] => {
if (!flags) return [];
return flags.split(';').filter(_ => !!_);
};
}