diff --git a/client/modules/IDE/components/EditorAccessibility.js b/client/modules/IDE/components/EditorAccessibility.js index b2e0cbe3..24c0ef95 100644 --- a/client/modules/IDE/components/EditorAccessibility.js +++ b/client/modules/IDE/components/EditorAccessibility.js @@ -9,7 +9,7 @@ class EditorAccessibility extends React.Component { if (this.props.lintMessages.length > 0) { for (let i = 0; i < this.props.lintMessages.length; i++) { messages.push( -
  • +
  • {this.props.lintMessages[i].severity} in line {this.props.lintMessages[i].line} : {this.props.lintMessages[i].message} @@ -18,7 +18,12 @@ class EditorAccessibility extends React.Component { } } else { messages.push( -

    There are no lint messages

    + // react wants dom items from an array or + // iterator to have a key property. since this + // is the only item we're pushing to the array + // and don't have a counter to include, + // let's just call it 0. +

    There are no lint messages

    ); } return (