BarGauge: Fixed scrollbar showing for bar gague in Firefox (#27784)

This commit is contained in:
Torkel Ödegaard 2020-09-25 13:32:28 +02:00 committed by GitHub
parent 0bb8b32821
commit 193565ca26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,7 +152,7 @@ export class VizRepeater<V, D = {}> extends PureComponent<Props<V, D>, State<V>>
const repeaterStyle: React.CSSProperties = {
display: 'flex',
overflow: minVizHeight ? 'hidden scroll' : 'visible',
overflow: minVizHeight ? 'hidden auto' : 'hidden',
};
let vizHeight = height;