refactor: update to Angular 17

This commit is contained in:
2023-11-08 15:44:00 +01:00
parent 6dc01b538c
commit d3fe9a2f85
28 changed files with 2494 additions and 1561 deletions

View File

@@ -52,5 +52,5 @@ export function groupByStable(collection, group) {
* @returns {Record<string, T[]>}
*/
export function groupByProperty(collection, property) {
return groupBy(collection, item => item[property]);
return groupBy(collection, item => /** @type {string} */ (item[property]));
}