Space Directory shows '$action.convertToNiceTeamLabel($teamLabel.getName())' for some categories
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Problem
When viewing the Space Directory, some categories are appearing with '$action.convertToNiceTeamLabel($teamLabel.getName())'.
Diagnosis
Diagnostic Steps
Run the following database query in your Confluence database:
1. Verify if there is a label with empty name.
select * from LABEL where NAME is null and OWNER is null and NAMESPACE = 'team';
2. Verify if there is content associated to that label.
select * from CONTENT_LABEL where LABELID=<labelid_from_query_above>;
select TITLE from CONTENT where CONTENTID=<contentid>;
Cause
The issue is caused by null labels. Verified by checking the result from the database query in the diagnostic step.
Resolution
Please run the following database query in order to delete the null labels:
delete from CONTENT_LABEL where LABELID = <labelid_from_first_query>;
delete from LABEL where LABELID = <labelid_from_first_query>;
Always back up your data before performing any modifications to the database. If possible, test any alter, insert, update, or delete SQL commands on a staging server first.