-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #606 from 4Science/#603_mydspace_fixes
#603 mydspace fixes
- Loading branch information
Showing
25 changed files
with
193 additions
and
161 deletions.
There are no files selected for viewing
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
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
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
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { inheritSerialization } from 'cerialize'; | ||
import { typedObject } from '../../cache/builders/build-decorators'; | ||
import { DSpaceObject } from '../../shared/dspace-object.model'; | ||
import { inheritLinkAnnotations, typedObject } from '../../cache/builders/build-decorators'; | ||
import { CLAIMED_TASK } from './claimed-task-object.resource-type'; | ||
import { TaskObject } from './task-object.model'; | ||
|
||
/** | ||
* A model class for a ClaimedTask. | ||
*/ | ||
@typedObject | ||
@inheritSerialization(DSpaceObject) | ||
@inheritSerialization(TaskObject) | ||
@inheritLinkAnnotations(TaskObject) | ||
export class ClaimedTask extends TaskObject { | ||
static type = CLAIMED_TASK; | ||
} |
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
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
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
16 changes: 9 additions & 7 deletions
16
...ement/claimed-task-search-result/claimed-task-search-result-detail-element.component.html
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<ds-item-detail-preview *ngIf="workflowitem" | ||
[item]="(workflowitem.item | async)?.payload" | ||
[object]="object" | ||
[showSubmitter]="showSubmitter" | ||
[status]="status"> | ||
</ds-item-detail-preview> | ||
<ng-container *ngVar="(workflowitemRD$ | async)?.payload as workflowitem"> | ||
<ds-item-detail-preview *ngIf="workflowitem" | ||
[item]="(workflowitem.item | async)?.payload" | ||
[object]="object" | ||
[showSubmitter]="showSubmitter" | ||
[status]="status"> | ||
</ds-item-detail-preview> | ||
|
||
<ds-claimed-task-actions *ngIf="workflowitem" [object]="dso"></ds-claimed-task-actions> | ||
<ds-claimed-task-actions *ngIf="workflowitem" [object]="dso"></ds-claimed-task-actions> | ||
</ng-container> |
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
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
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
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
Oops, something went wrong.