mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 21:13:07 +00:00
75940: missing semicolons
This commit is contained in:
@@ -19,7 +19,7 @@ export function getItemPageRoute(item: Item) {
|
||||
}
|
||||
|
||||
export function getItemEditRoute(item: Item) {
|
||||
return new URLCombiner(getItemPageRoute(item), ITEM_EDIT_PATH).toString()
|
||||
return new URLCombiner(getItemPageRoute(item), ITEM_EDIT_PATH).toString();
|
||||
}
|
||||
|
||||
export function getEntityPageRoute(entityType: string, itemId: string) {
|
||||
|
@@ -98,7 +98,7 @@ export class ItemVersionsComponent implements OnInit {
|
||||
*/
|
||||
itemPageRoutes$: Observable<{
|
||||
[itemId: string]: string
|
||||
}>
|
||||
}>;
|
||||
|
||||
constructor(private versionHistoryService: VersionHistoryDataService) {
|
||||
}
|
||||
|
@@ -31,7 +31,7 @@ export class ItemSelectComponent extends ObjectSelectComponent<Item> {
|
||||
*/
|
||||
itemPageRoutes$: Observable<{
|
||||
[itemId: string]: string
|
||||
}>
|
||||
}>;
|
||||
|
||||
constructor(protected objectSelectService: ObjectSelectService) {
|
||||
super(objectSelectService);
|
||||
|
Reference in New Issue
Block a user