mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
enable flags for tags/categories in the metadata card (#8783)
This commit is contained in:
@@ -9,8 +9,8 @@
|
|||||||
[multi]="multi"
|
[multi]="multi"
|
||||||
[displayAspect]="displayAspect"
|
[displayAspect]="displayAspect"
|
||||||
[preset]="preset"
|
[preset]="preset"
|
||||||
[displayTags]="true"
|
[displayTags]="displayTags"
|
||||||
[displayCategories]="true">
|
[displayCategories]="displayCategories">
|
||||||
</adf-content-metadata>
|
</adf-content-metadata>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
<mat-card-footer class="adf-content-metadata-card-footer">
|
<mat-card-footer class="adf-content-metadata-card-footer">
|
||||||
|
@@ -48,6 +48,14 @@ export class ContentMetadataCardComponent implements OnChanges {
|
|||||||
@Input()
|
@Input()
|
||||||
displayAspect: string = null;
|
displayAspect: string = null;
|
||||||
|
|
||||||
|
/** Display tags in the card **/
|
||||||
|
@Input()
|
||||||
|
displayTags = true;
|
||||||
|
|
||||||
|
/** Display categories in the card **/
|
||||||
|
@Input()
|
||||||
|
displayCategories = true;
|
||||||
|
|
||||||
/** (required) Name or configuration of the metadata preset, which defines aspects
|
/** (required) Name or configuration of the metadata preset, which defines aspects
|
||||||
* and their properties.
|
* and their properties.
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user