diff --git a/CHANGELOG.md b/CHANGELOG.md index 913742b01a0..576971577ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ 1. [13657](https://github.com/influxdata/influxdb/pull/13657): Update UI Flux function documentation 1. [13718](https://github.com/influxdata/influxdb/pull/13718): Updated System template to support math with floats 1. [13732](https://github.com/influxdata/influxdb/pull/13732): Fixed the window function documentation +1. [13738](https://github.com/influxdata/influxdb/pull/13738): Fixed typo in the `range` Flux function example ### UI Improvements 1. [13424](https://github.com/influxdata/influxdb/pull/13424): Add general polish and empty states to Create Dashboard from Template overlay diff --git a/ui/src/shared/constants/fluxFunctions.ts b/ui/src/shared/constants/fluxFunctions.ts index 79c46ded3fd..f3b4b1135a3 100644 --- a/ui/src/shared/constants/fluxFunctions.ts +++ b/ui/src/shared/constants/fluxFunctions.ts @@ -34,14 +34,14 @@ export const RANGE: FluxToolbarFunction = { { name: 'stop', desc: - 'Specifies the exclusive newest time to be included in the results. Defaults to `now`.', + 'Specifies the exclusive newest time to be included in the results. Defaults to `now()`.', type: 'Duration', }, ], package: '', desc: "Filters records based on time bounds. Each input table's records are filtered to contain only records that exist within the time bounds. Each input table's group key value is modified to fit within the time bounds. Tables where all records exists outside the time bounds are filtered entirely.", - example: 'range(start: -15m, stop: now)', + example: 'range(start: -15m, stop: now())', category: 'Transformations', link: 'https://v2.docs.influxdata.com/v2.0/reference/flux/functions/built-in/transformations/range/',