mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 19:43:04 +00:00
Fixes after merge
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
[dsDebounce]="300" (onDebounce)="confirm.emit(false)"></textarea>
|
||||
<div class="d-flex" *ngIf="mdRepresentation">
|
||||
<a class="mr-2" target="_blank" [routerLink]="mdRepresentationItemRoute$ | async">{{ mdRepresentationName$ | async }}</a>
|
||||
<ds-type-badge [object]="mdRepresentation"></ds-type-badge>
|
||||
<ds-themed-type-badge [object]="mdRepresentation"></ds-themed-type-badge>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ds-flex-cell ds-lang-cell" role="cell">
|
||||
|
@@ -4,7 +4,6 @@
|
||||
<ds-themed-item-list-preview *ngIf="workflowitem"
|
||||
[item]="(workflowitem?.item | async)?.payload"
|
||||
[object]="object"
|
||||
[status]="status"
|
||||
[showSubmitter]="showSubmitter">
|
||||
</ds-themed-item-list-preview>
|
||||
</div>
|
||||
|
@@ -4,7 +4,6 @@ import { ClaimedDeclinedTaskTaskSearchResult } from 'src/app/shared/object-colle
|
||||
import { ViewMode } from '../../../../../core/shared/view-mode.model';
|
||||
import { LinkService } from '../../../../../core/cache/builders/link.service';
|
||||
import { TruncatableService } from '../../../../truncatable/truncatable.service';
|
||||
import { MyDspaceItemStatusType } from '../../../../object-collection/shared/mydspace-item-status/my-dspace-item-status-type';
|
||||
import { Observable } from 'rxjs';
|
||||
import { RemoteData } from '../../../../../core/data/remote-data';
|
||||
import { WorkflowItem } from '../../../../../core/submission/models/workflowitem.model';
|
||||
@@ -31,11 +30,6 @@ export class ClaimedDeclinedTaskSearchResultListElementComponent extends SearchR
|
||||
*/
|
||||
public showSubmitter = true;
|
||||
|
||||
/**
|
||||
* Represent item's status
|
||||
*/
|
||||
public status = MyDspaceItemStatusType.DECLINED_TASk;
|
||||
|
||||
/**
|
||||
* The workflowitem object that belonging to the result object
|
||||
*/
|
||||
|
@@ -3,8 +3,7 @@
|
||||
[object]="object"
|
||||
[showSubmitter]="showSubmitter"
|
||||
[context]="childContext"
|
||||
[workflowItem]="workflowitem$.value"
|
||||
[status]="status"></ds-themed-item-list-preview>
|
||||
[workflowItem]="workflowitem$.value"></ds-themed-item-list-preview>
|
||||
|
||||
<div class="row">
|
||||
<div [ngClass]="showThumbnails ? 'offset-3 offset-md-2 pl-3' : ''">
|
||||
|
@@ -3,8 +3,7 @@
|
||||
[object]="object"
|
||||
[showSubmitter]="showSubmitter"
|
||||
[context]="childContext"
|
||||
[workflowItem]="workflowitem$.value"
|
||||
[status]="status"></ds-themed-item-list-preview>
|
||||
[workflowItem]="workflowitem$.value"></ds-themed-item-list-preview>
|
||||
<div class="row">
|
||||
<div [ngClass]="showThumbnails ? 'offset-3 offset-md-2 pl-3' : ''">
|
||||
<ds-pool-task-actions id="actions"
|
||||
|
@@ -250,7 +250,6 @@ import {
|
||||
} from './object-list/listable-notification-object/listable-notification-object.component';
|
||||
import { ThemedCollectionDropdownComponent } from './collection-dropdown/themed-collection-dropdown.component';
|
||||
import { MetadataFieldWrapperComponent } from './metadata-field-wrapper/metadata-field-wrapper.component';
|
||||
import { LogInExternalProviderComponent } from './log-in/methods/log-in-external-provider/log-in-external-provider.component';
|
||||
|
||||
import { StatusBadgeComponent } from './object-collection/shared/badges/status-badge/status-badge.component';
|
||||
import { BadgesComponent } from './object-collection/shared/badges/badges.component';
|
||||
|
@@ -7,7 +7,7 @@
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p class="mb-3"><strong>{{dso.name}}</strong>
|
||||
<span *ngIf="!!dso" class="float-right"><ds-type-badge *ngIf="!!dso" [object]="dso"></ds-type-badge></span>
|
||||
<span *ngIf="!!dso" class="float-right"><ds-themed-type-badge *ngIf="!!dso" [object]="dso"></ds-themed-type-badge></span>
|
||||
</p>
|
||||
<div>
|
||||
<fieldset *ngFor="let subscriptionType of subscriptionForm?.controls | keyvalue" formGroupName="{{subscriptionType.key}}" class="form-group form-row">
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<td class="dso-info">
|
||||
<ng-container *ngIf="!!dso">
|
||||
<ds-type-badge [object]="dso"></ds-type-badge>
|
||||
<ds-themed-type-badge [object]="dso"></ds-themed-type-badge>
|
||||
<p><a [routerLink]="[getPageRoutePrefix(), dso.id]">{{dso.name}}</a></p>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="!dso">
|
||||
|
Reference in New Issue
Block a user