NIFI-280 - fixing colspan

This commit is contained in:
danbress 2015-02-03 23:18:43 -05:00
parent 5f1fb45c91
commit c3085b8b21
1 changed files with 2 additions and 1 deletions

View File

@ -284,7 +284,8 @@ public class HtmlDocumentationWriter implements DocumentationWriter {
xmlStreamWriter.writeEndElement();
xmlStreamWriter.writeStartElement("tr");
xmlStreamWriter.writeStartElement("td");
xmlStreamWriter.writeAttribute("span", "4");
xmlStreamWriter.writeAttribute("colspan", "4");
xmlStreamWriter.writeAttribute("class", "description-row");
xmlStreamWriter.writeCharacters("Description:");
xmlStreamWriter.writeCharacters(property.getDescription());