Skip to content

Commit

Permalink
Use <td>s inside of callout instead of <th>s
Browse files Browse the repository at this point in the history
  • Loading branch information
gakimball committed Mar 7, 2016
1 parent bf0da97 commit dc79e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/componentFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ module.exports = function(element) {
classes = classes.concat(element.attr('class').split(' '));
}

return format('<table><tr><th class="%s">%s</th></tr></table>', classes.join(' '), inner);
return format('<table><tr><td class="%s">%s</td></tr></table>', classes.join(' '), inner);

default:
// If it's not a custom component, return it as-is
Expand Down

0 comments on commit dc79e9b

Please sign in to comment.