From 18be8530fe61a872193cba6e3244c0ba21ad2eab Mon Sep 17 00:00:00 2001
From: Matthew Hodgson <matthew@matrix.org>
Date: Wed, 12 Aug 2015 01:45:04 +0100
Subject: [PATCH] put key='' on the right element

---
 src/controllers/organisms/RoomView.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/controllers/organisms/RoomView.js b/src/controllers/organisms/RoomView.js
index 540ac119..495f86e8 100644
--- a/src/controllers/organisms/RoomView.js
+++ b/src/controllers/organisms/RoomView.js
@@ -353,7 +353,8 @@ module.exports = {
             }
             if (!TileType) continue;
             ret.unshift(
-                <li><TileType key={mxEv.getId()} mxEvent={mxEv} continuation={continuation} last={last}/></li>
+                // XXX: don't wrap everything in a needless li - make the TileType a li if we must :(
+                <li key={mxEv.getId()}><TileType mxEvent={mxEv} continuation={continuation} last={last}/></li>
             );
             if (dateSeparator) {
                 ret.unshift(dateSeparator);