parent
f1b3e97c1e
commit
99074a262d
|
|
@ -5,12 +5,15 @@
|
|||
1. [18011](https://github.com/influxdata/influxdb/pull/18011): Integrate UTC dropdown when making custom time range query
|
||||
1. [18040](https://github.com/influxdata/influxdb/pull/18040): Allow for min OR max y-axis visualization settings rather than min AND max
|
||||
1. [17764](https://github.com/influxdata/influxdb/pull/17764): Add CSV to line protocol conversion library
|
||||
1. [18059](https://github.com/influxdata/influxdb/pull/18059): Make the dropdown width adjustable
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
1. [18066](https://github.com/influxdata/influxdb/pull/18066): Fixed bug that wasn't persisting timeFormat for Graph + Single Stat selections
|
||||
1. [17959](https://github.com/influxdata/influxdb/pull/17959): Authorizer now exposes full permission set
|
||||
1. [18071](https://github.com/influxdata/influxdb/pull/18071): Fixed issue that was causing variable selections to hydrate all variable values
|
||||
1. [18016](https://github.com/influxdata/influxdb/pull/18016): Remove the fancy scrollbars
|
||||
1. [18171](https://github.com/influxdata/influxdb/pull/18171): Check status now displaying warning if loading a large amount
|
||||
|
||||
### UI Improvements
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class VariableDropdown extends PureComponent<Props> {
|
|||
const longestItemWidth = Math.floor(
|
||||
values.reduce(function(a, b) {
|
||||
return a.length > b.length ? a : b
|
||||
}, '').length * 8.5
|
||||
}, '').length * 8.75
|
||||
)
|
||||
|
||||
const widthLength = Math.max(140, longestItemWidth)
|
||||
|
|
|
|||
Loading…
Reference in New Issue