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

Always show 'connections' tab in data ref tables panel

parent 4aadd976
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ export default React.createClass({
}
var panes = {
"fields": table.fields.length,
"metrics": 0,
// "metrics": 0,
"connections": this.state.tableForeignKeys.length
};
var tabs = Object.keys(panes).map((name) => {
......@@ -75,15 +75,11 @@ export default React.createClass({
'Button--small': true,
'Button--active': name === this.state.pane
});
if (count > 0) {
return (
<a key={name} className={classes} href="#" onClick={this.showPane.bind(null, name)}>
<span className="DataReference-paneCount">{count}</span><span>{inflection.inflect(name, count)}</span>
</a>
);
} else {
return null;
}
return (
<a key={name} className={classes} href="#" onClick={this.showPane.bind(null, name)}>
<span className="DataReference-paneCount">{count}</span><span>{inflection.inflect(name, count)}</span>
</a>
);
});
var pane;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment