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

Merge pull request #2671 from metabase/fix-table-list-background

fix the broken data model sidebar background on long table lists
parents b73819b0 fd4751c7
No related branches found
No related tags found
No related merge requests found
......@@ -93,13 +93,13 @@ export default class MetadataEditor extends Component {
}
} else {
content = (
<div className="flex flex-full layout-centered">
<div style={{paddingTop: "10rem"}} className="full text-centered">
<h2 className="text-grey-3">Select any table to see its schema and add or edit metadata.</h2>
</div>
);
}
return (
<div className="MetadataEditor full-height p3">
<div className="p3">
<MetadataHeader
ref="header"
databaseId={this.props.databaseId}
......@@ -108,7 +108,7 @@ export default class MetadataEditor extends Component {
isShowingSchema={this.state.isShowingSchema}
toggleShowSchema={this.toggleShowSchema}
/>
<div className="MetadataEditor-main flex flex-row flex-full mt2 full-height">
<div style={{minHeight: "60vh"}} className="flex flex-row flex-full mt2 full-height">
<MetadataTablePicker
tableId={this.props.tableId}
tables={(this.props.databaseMetadata) ? this.props.databaseMetadata.tables : []}
......
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