mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 19:13:08 +00:00
ESLint: fix dangling commas
This commit is contained in:
@@ -34,8 +34,8 @@ const ENTRY_COMPONENTS = [
|
||||
declarations: [
|
||||
AdminCurationTasksComponent,
|
||||
MetadataImportPageComponent,
|
||||
BatchImportPageComponent
|
||||
]
|
||||
BatchImportPageComponent,
|
||||
],
|
||||
})
|
||||
export class AdminModule {
|
||||
/**
|
||||
@@ -45,7 +45,7 @@ export class AdminModule {
|
||||
static withEntryComponents() {
|
||||
return {
|
||||
ngModule: AdminModule,
|
||||
providers: ENTRY_COMPONENTS.map((component) => ({provide: component}))
|
||||
providers: ENTRY_COMPONENTS.map((component) => ({provide: component})),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user