Skip to content
Snippets Groups Projects
Commit fb5cfc68 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

handle long revision history entries

parent b74d7d78
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ export default class QueryDiff extends Component {
return (
<LoadingAndErrorWrapper loading={!tableMetadata}>
{() =>
<div className="my1 flex" style={{ pointerEvents: "none" }}>
<div className="my1" style={{ pointerEvents: "none" }}>
{ defintion.aggregation &&
<AggregationWidget
aggregation={defintion.aggregation}
......
......@@ -26,16 +26,18 @@ export default class RevisionDiff extends Component {
}
return (
<div className="bordered rounded my2 flex flex-row align-center" style={{borderWidth: 2}}>
<div className="m3">
{icon}
</div>
<div>
{ this.props.property === "definition" ?
<QueryDiff diff={this.props.diff} tableMetadata={tableMetadata}/>
:
<TextDiff diff={this.props.diff}/>
}
<div className="bordered rounded my2" style={{borderWidth: 2, overflow: 'hidden', maxWidth: 860}}>
<div className="flex scroll-x scroll-show scroll-show-horizontal">
<div className="m3">
{icon}
</div>
<div>
{ this.props.property === "definition" ?
<QueryDiff diff={this.props.diff} tableMetadata={tableMetadata}/>
:
<TextDiff diff={this.props.diff}/>
}
</div>
</div>
</div>
);
......
......@@ -73,7 +73,6 @@
.Query-filterList {
display: flex;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
min-height: 55px;
......
......@@ -34,7 +34,7 @@ export default class FilterList extends Component {
render() {
const { filters, tableMetadata } = this.props;
return (
<div className="Query-filterList scroll-show scroll-show--horizontal">
<div className="Query-filterList scroll-x scroll-show scroll-show--horizontal">
{filters.slice(1).map((filter, index) =>
<FilterWidget
key={index}
......
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