-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'alex/added-themeable-person-component_c…
…ontribute-7.4' into atmire-contributions-august_contribute-7.6 # Conflicts: # src/themes/custom/eager-theme.module.ts
- Loading branch information
Showing
4 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
20 changes: 20 additions & 0 deletions
20
src/themes/custom/app/entity-groups/research-entities/item-pages/person/person.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Component } from '@angular/core'; | ||
import { ViewMode } from '../../../../../../../app/core/shared/view-mode.model'; | ||
import { | ||
listableObjectComponent | ||
} from '../../../../../../../app/shared/object-collection/shared/listable-object/listable-object.decorator'; | ||
import { | ||
PersonComponent as BaseComponent | ||
} from '../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component'; | ||
import { Context } from '../../../../../../../app/core/shared/context.model'; | ||
|
||
@listableObjectComponent('Person', ViewMode.StandalonePage, Context.Any, 'custom') | ||
@Component({ | ||
selector: 'ds-person', | ||
// styleUrls: ['./person.component.scss'], | ||
styleUrls: ['../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component.scss'], | ||
// templateUrl: './person.component.html', | ||
templateUrl: '../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component.html', | ||
}) | ||
export class PersonComponent extends BaseComponent { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters