From 4ce2c4447973e4df6e10822e369512731fc0d4ed Mon Sep 17 00:00:00 2001 From: xsalonx Date: Thu, 11 Apr 2024 14:57:16 +0200 Subject: [PATCH] a --- .../components/common/form/inputs/TimeRangeInputComponent.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;