mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
10 lines
394 B
HTML
10 lines
394 B
HTML
<ds-loading *ngIf="isLoading" message="Loading..."></ds-loading>
|
|
<ds-form *ngIf="!isLoading && formModel" #formRef="formComponent"
|
|
[formId]="formId"
|
|
[formModel]="formModel"
|
|
[displaySubmit]="false"
|
|
(dfChange)="onChange($event)"
|
|
(dfFocus)="onFocus($event)"
|
|
(remove)="onRemove($event)"
|
|
(removeArrayItem)="onRemove($event)"></ds-form>
|