Merge branch 'master' into explore/dedup-strategu-url

This commit is contained in:
Dominik Prokop
2019-02-11 12:03:45 +01:00
105 changed files with 1678 additions and 773 deletions

View File

@@ -27,6 +27,7 @@ interface LogsContainerProps {
toggleLogs: typeof toggleLogs;
changeDedupStrategy: typeof changeDedupStrategy;
dedupStrategy: LogsDedupStrategy;
width: number;
}
export class LogsContainer extends PureComponent<LogsContainerProps> {
@@ -51,7 +52,8 @@ export class LogsContainer extends PureComponent<LogsContainerProps> {
range,
showingLogs,
scanning,
scanRange
scanRange,
width,
} = this.props;
return (
@@ -71,6 +73,7 @@ export class LogsContainer extends PureComponent<LogsContainerProps> {
range={range}
scanning={scanning}
scanRange={scanRange}
width={width}
/>
</Panel>
);