75939: (edit) item links refactored to contain entity types

This commit is contained in:
Kristof De Langhe
2021-01-15 16:33:27 +01:00
parent 1942e0e2ba
commit 8e75132086
93 changed files with 392 additions and 199 deletions

View File

@@ -51,7 +51,7 @@ export function getDSORoute(dso: DSpaceObject): string {
case Collection.type.value:
return getCollectionPageRoute(dso.uuid);
case Item.type.value:
return getItemPageRoute(dso.uuid);
return getItemPageRoute(dso as Item);
}
}