Skip to content

Commit

Permalink
Remove spans from TimelineHeaderRow
Browse files Browse the repository at this point in the history
Signed-off-by: Davit Yeghshatyan <davo@uber.com>
  • Loading branch information
Davit Yeghshatyan committed Jul 2, 2018
1 parent dd98ace commit 31ebe58
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import TimelineViewingLayer from './TimelineViewingLayer';
import Ticks from '../Ticks';
import TimelineRow from '../TimelineRow';
import type { ViewRangeTime, ViewRangeTimeUpdate } from '../../types';
import type { Span } from '../../../../types';

import './TimelineHeaderRow.css';

Expand All @@ -35,7 +34,6 @@ type TimelineHeaderRowProps = {
onColummWidthChange: number => void,
onExpandAll: () => void,
onExpandOne: () => void,
spans: Span[],
updateNextViewRangeTime: ViewRangeTimeUpdate => void,
updateViewRangeTime: (number, number, ?string) => void,
viewRangeTime: ViewRangeTime,
Expand All @@ -51,7 +49,6 @@ export default function TimelineHeaderRow(props: TimelineHeaderRowProps) {
onColummWidthChange,
onExpandAll,
onExpandOne,
spans,
updateViewRangeTime,
updateNextViewRangeTime,
viewRangeTime,
Expand All @@ -66,7 +63,6 @@ export default function TimelineHeaderRow(props: TimelineHeaderRowProps) {
onExpandAll={onExpandAll}
onCollapseOne={onCollapseOne}
onExpandOne={onExpandOne}
spans={spans}
/>
</TimelineRow.Cell>
<TimelineRow.Cell width={1 - nameColumnWidth}>
Expand Down

0 comments on commit 31ebe58

Please sign in to comment.