Skip to content
Snippets Groups Projects
Commit a8620090 authored by Tom Robinson's avatar Tom Robinson
Browse files

Sort tables in Metadata editing listing by display_name

parent 0145b0c1
Branches
Tags
No related merge requests found
......@@ -34,7 +34,8 @@ export default React.createClass({
var hiddenTables = [];
if (this.props.tables) {
_.each(this.props.tables, (table) => {
var tables = _.sortBy(this.props.tables, "display_name");
_.each(tables, (table) => {
var classes = cx("AdminList-item", {
"selected": this.props.tableId === table.id,
"flex": true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment