mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 22:43:03 +00:00
feat: migrate everything to standalone and fix build errors
This commit is contained in:
@@ -2,10 +2,14 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
|
||||
import { DSpaceObject } from '../../core/shared/dspace-object.model';
|
||||
import { DSONameService } from '../../core/breadcrumbs/dso-name.service';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
import { NgIf } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'ds-confirmation-modal',
|
||||
templateUrl: 'confirmation-modal.component.html',
|
||||
selector: 'ds-confirmation-modal',
|
||||
templateUrl: 'confirmation-modal.component.html',
|
||||
standalone: true,
|
||||
imports: [NgIf, TranslateModule]
|
||||
})
|
||||
export class ConfirmationModalComponent {
|
||||
@Input() headerLabel: string;
|
||||
|
Reference in New Issue
Block a user