mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
* 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
18 lines
537 B
HTML
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>
|