Skip to content
Snippets Groups Projects
Commit a9f18194 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

one more fix.

parent 82e6363b
Branches
Tags
No related merge requests found
......@@ -19,7 +19,7 @@ export default class DataReferenceMain extends Component {
databases = this.props.databases.map((database) => {
if (database.tables && database.tables.length > 0) {
const tableCount = database.tables.length + " " + inflection.inflect("table", database.tables.length);
const tables = database.tables.map((table, index) => {
const tables = database.tables.filter(isQueryable).map((table, index) => {
let classes = cx({
'p1' : true,
'border-bottom': index !== database.tables.length - 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment