Skip to content
This repository was archived by the owner on Aug 13, 2018. It is now read-only.

Commit 956ccd5

Browse files
committed
Also only show relevant data in chat view
1 parent 9174b0d commit 956ccd5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

data/components/frame-list.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ var FrameBubble = React.createFactory(React.createClass({
158158
if (!preview && frame.socketIo) {
159159
preview = TreeView({
160160
key: "preview-socketio",
161-
data: {"Socket IO": frame.socketIo},
161+
// We only show the data that is deemed interesting for the user in the
162+
// inline previews, not the socketIO metadata
163+
data: {"Socket IO": frame.socketIo.data},
162164
mode: "tiny"
163165
});
164166
}

0 commit comments

Comments
 (0)