Propagate time format options to table graphs

pull/10616/head
Brandon Farmer 2018-03-09 14:53:59 -08:00
parent d1635a45c5
commit 9715a433f7
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,5 @@
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import moment from 'moment'
import classnames from 'classnames'
import InputClickToEdit from 'shared/components/InputClickToEdit'
import {Dropdown} from 'src/shared/components/Dropdown'

View File

@ -40,7 +40,7 @@ const Layout = (
{
host,
cell,
cell: {h, axes, type, colors, legend},
cell: {h, axes, type, colors, legend, options},
source,
sources,
onZoom,
@ -77,6 +77,7 @@ const Layout = (
inView={cell.inView}
axes={axes}
type={type}
options={options}
staticLegend={IS_STATIC_LEGEND(legend)}
cellHeight={h}
onZoom={onZoom}