Skip to content

Commit

Permalink
Fix profiles & tags being omitted rendering resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Grahame Grieve committed Feb 26, 2025
1 parent 1ff49fd commit 8cca77d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ protected XhtmlNode renderResourceTechDetails(ResourceWrapper r, XhtmlNode x, St
ResourceWrapper lastUpdated = meta == null ? null : meta.child("lastUpdated");
ResourceWrapper source = meta == null ? null : meta.child("source");

if (lang != null || versionId != null || lastUpdated != null || ir != null || source != null) {
if (lang != null || versionId != null || lastUpdated != null || ir != null || source != null || meta != null) {
XhtmlNode div = x.div().style("display: inline-block").style("background-color: #d9e0e7").style("padding: 6px")
.style("margin: 4px").style("border: 1px solid #8da1b4")
.style("border-radius: 5px").style("line-height: 60%");
Expand Down Expand Up @@ -1507,4 +1507,4 @@ protected void addContained(RenderingStatus status, XhtmlNode x, List<ResourceWr
}
}

}
};

0 comments on commit 8cca77d

Please sign in to comment.