Hi @MithraDe
You can try getActiveWorkflowItems in conjuction with WorkItem filter to list down active workitem for a model
ResultSet<WorkItem> getActiveWorkItems(long start,
long limit,
WorkItemFilter filter)
...
Hi @Raja-T
Please use browser debugger to check.
Seems like list styles is overriden by your project CSS. you might be using custom bullet for list or no list style within a section.
With CSS you can add pseudo element and shows the title for hidden components.Or change you component logic to always add Component Title(only in EDIT mode) which says 'Component A is hidden' and show this when the actual component content is hidden
Hi @StanleyLi2
Please check this if helps
https://wcm.io/handler/media/
https://adapt.to/2024/schedule/leveraging-dynamic-media-with-openapi-using-wcmio-media-handler
HI @IshitaGa1
Please check https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/assets/integrate-aem-assets-edge-delivery-services
Hi @aa_w
Could you please check the user, who created those copies inside global?
For me it seems there is a custom event listener which creates/copy pages from language master to global.
HI @Sanj123
You can add additional css which doe snot hide the component in the EDITOR mode
example
/* Edit Mode */
.aem-AuthorLayer-Edit .my-component {
display: block;
}
/* Preview Mode */
.aem-AuthorLayer-Preview .my-component {
display: block;
}
/* Layout Mode */
.aem-AuthorLayer-Layout...