Merge branch 'master' into selectable-themes

Conflicts:
	src/app/core/core.effects.ts
This commit is contained in:
lotte
2019-06-06 15:35:18 +02:00
93 changed files with 831 additions and 334 deletions

View File

@@ -243,7 +243,7 @@ export class SubmissionFormCollectionComponent implements OnChanges, OnInit {
if (isEmpty(searchTerm)) {
return listCollection;
} else {
return listCollection.filter((v) => v.collection.name.toLowerCase().indexOf(searchTerm.toLowerCase()) > -1).slice(0, 5)
return listCollection.filter((v) => v.collection.name.toLowerCase().indexOf(searchTerm.toLowerCase()) > -1).slice(0, 5);
}
}));
}