Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit 89e6d32

Browse files
committed
Merge pull request #140 from jaredly/props-alphabet
alphabetize attributes listing in props pane. fixes #139
2 parents c5bba28 + ea67795 commit 89e6d32

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

frontend/DataView/DataView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class DataView {
3131
return <div style={styles.missing}>null</div>;
3232
}
3333
var names = Object.keys(data);
34+
names.sort();
3435
var path = this.props.path;
3536
if (!names.length) {
3637
return <span style={styles.empty}>Empty object</span>;

0 commit comments

Comments
 (0)