From 8dd20edfcbd27648bacf8129c8e2c6174309cb9c Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Sat, 22 Oct 2016 05:50:55 -0400 Subject: [PATCH] Fix "missing key in ul" React warning --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 9b7bad5a1..f0f9ffdaa 100644 --- a/js/app.js +++ b/js/app.js @@ -107,7 +107,7 @@ var App = React.createClass({ for (let key of Object.keys(error)) { let val = typeof error[key] == 'string' ? error[key] : JSON.stringify(error[key]); let label = this._error_key_labels[key]; - errorInfoList.push(
  • {label}: {val}
  • ); + errorInfoList.push(
  • {label}: {val}
  • ); } this.setState({