Add more displayNames

This commit is contained in:
Nathan Sobo
2014-04-15 17:17:30 -06:00
parent a6f2e926fe
commit b96abfffb7
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ AcceptFilter = {acceptNode: -> NodeFilter.FILTER_ACCEPT}
module.exports =
LinesComponent = React.createClass
displayName: 'LinesComponent'
render: ->
{editor, visibleRowRange, showIndentGuide} = @props
[startRow, endRow] = visibleRowRange
@@ -77,6 +79,8 @@ LinesComponent = React.createClass
LineComponent = React.createClass
displayName: 'LineComponent'
render: ->
div className: 'line', dangerouslySetInnerHTML: {__html: @buildInnerHTML()}