75940: missing semicolons

This commit is contained in:
Kristof De Langhe
2021-01-27 12:58:38 +01:00
parent 694d45fd2c
commit 7ce8b3d460
3 changed files with 3 additions and 3 deletions

View File

@@ -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) {

View File

@@ -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) {
} }

View File

@@ -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);