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