Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename min/max properties into from/to in loader #16638

Merged
merged 1 commit into from
Feb 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ui/public/visualize/loader/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import { EmbeddedVisualizeHandler } from './embedded_visualize_handler';
* don't pass a uiState, the visualization will creates it's own uiState to
* store information like whether the legend is open or closed, but you don't
* have access to it from the outside. Pass one in if you need that access.
* @property {object} timeRange An object with a min/max key, that must be
* @property {object} timeRange An object with a from/to key, that must be
* either a date in ISO format, or a valid datetime Elasticsearch expression,
* e.g.: { min: 'now-7d/d', max: 'now' }
* e.g.: { from: 'now-7d/d', to: 'now' }
* @property {boolean} showSpyPanel Whether or not the spy panel should be available
* on this chart. If set to true, spy panels will only be shown if there are
* spy panels available for this specific visualization, since not every visualization
Expand Down