Files
alfresco-content-app/src/app/dialogs/node-versions/node-versions.dialog.html
Cilibiu Bogdan 5cc4f8ec55 [ACA-2164] Node version action (#916)
* export upload effects and actions

* remove node version effect and action

* remove node version theme

* change old version manager implementation

* get node info from store selection

* upload version dialog container

* node version form

* update app module

* upload version effect and action

* update version action

* internationalization

* refresh on upload version

* remove old implementation tests

* remove adf-version-manager dialog implementation

* revert adf version component

* fix viewer version action
2019-02-07 09:04:46 +00:00

18 lines
537 B
HTML

<header mat-dialog-title>
{{ 'VERSION.DIALOG_ADF.TITLE' | translate }}
</header>
<section mat-dialog-content>
<adf-version-manager
[node]="node"
[showComments]="'adf-version-manager.allowComments' | adfAppConfig: true"
[allowDownload]="'adf-version-manager.allowDownload' | adfAppConfig: true"
(uploadError)="uploadError($event)"
>
</adf-version-manager>
</section>
<footer mat-dialog-actions>
<button mat-button [mat-dialog-close]="true">
{{ 'VERSION.DIALOG_ADF.CLOSE' | translate }}
</button>
</footer>