Wrong CSS class for Tags in generated report
When a report is generated for items containing tags, the HTML for the Tags section reads:
PS. For those interested, I'm customising my reports by using a Firefox plugin called Stylish to create a user stylesheet for pages originating from zotero://report. For example, I hide the Date Added field by using:
https://userstyles.org/styles/123697/zotero-reports-customised
<h3 class="tags">Tags:</h3>The <ul> should obviously be
<ul class="class" tags="tags">
<li>...</li>
</ul>
class="tags"instead, which is what Zotero correctly generates for other fields.
PS. For those interested, I'm customising my reports by using a Firefox plugin called Stylish to create a user stylesheet for pages originating from zotero://report. For example, I hide the Date Added field by using:
.dateAdded {The user stylesheet is at
display: none;
}
https://userstyles.org/styles/123697/zotero-reports-customised