Hi all,
Our app was compatible with Confluence 7. And the order of web-item following the weight in the “atlassian-plugin.xml” file. Like this:
After update the app compatible with Confluence 8. And the “atlassian-plugin.xml” is the same, but the order of web-item was changed.
<!-- Web Items -->
<web-item key="configuration" name="configuration" section="system.admin/ppp_section"
weight="100">
<label>Configuration</label>
<link linkId="configuration-link">
/plugins/servlet/ppp/configuration
</link>
</web-item>
<web-item key="export" name="Export Permission" section="system.admin/ppp_section" weight="200">
<label>Backup</label>
<link linkId="export-configuration-link">
/plugins/servlet/ppp/export
</link>
</web-item>
<web-item key="import" name="Import Permission" section="system.admin/ppp_section" weight="300">
<label>Restore</label>
<link linkId="import-configuration-link">
/plugins/servlet/ppp/import
</link>
</web-item>
<web-item key="audit-log" name="Audit Log" section="system.admin/ppp_section" weight="400">
<label>Audit Log</label>
<link linkId="audit-log-link">
/plugins/servlet/ppp/audit-log
</link>
</web-item>
Do you have any idea about it?
Thank you so much