adobe / aem-core-wcm-components

Standardized components to build websites with AEM.
https://docs.adobe.com/content/help/en/experience-manager-core-components/using/introduction.html
Apache License 2.0
723 stars 737 forks source link

Service ranking for TableOfContentsFilter incorrectly defined #2799

Open HitmanInWis opened 6 days ago

HitmanInWis commented 6 days ago

Version: 2.25.5-SNAPSHOT

The service ranking syntax in TableOfContentsFilter is defined incorrectly, resulting in the filter having an invalid config when viewed on /system/console/status-Services

Invalid line:

    property = {Constants.SERVICE_RANKING + "Integer=999"}

should be (added ':'):

    property = {Constants.SERVICE_RANKING + ":Integer=999"}

The component seems to be working fine w/o this service ranking, so unsure if this should be fixed or just removed.