diff --git a/lib/public/components/common/form/inputs/TimeRangeInputComponent.js b/lib/public/components/common/form/inputs/TimeRangeInputComponent.js index b5edb10d15..692a5f398a 100644 --- a/lib/public/components/common/form/inputs/TimeRangeInputComponent.js +++ b/lib/public/components/common/form/inputs/TimeRangeInputComponent.js @@ -23,8 +23,8 @@ import { DateTimeInputComponent } from '../../../common/form/inputs/DateTimeInpu /** * Return a time range input component * - * @param {TimeRangeFilterModel} timeRangeInputModel the model of the input - * @return {Component} the resulting component + * @param {TimeRangeFilterModel} timeRangeInputModel the model of the time range input + * @return {Component} time range input component */ export const timeRangeInput = (timeRangeInputModel, { seconds, from = {}, to = {} } = {}) => { const timeStep = seconds ? 1000 : 60 * 1000;