mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
grafana/ui: fix toTimeTicks error (#18448)
This commit is contained in:
committed by
Dominik Prokop
parent
27ea2bef2c
commit
72b0e95708
@@ -295,7 +295,7 @@ export function toDurationInHoursMinutesSeconds(size: number) {
|
||||
}
|
||||
|
||||
export function toTimeTicks(size: number, decimals: DecimalCount, scaledDecimals: DecimalCount) {
|
||||
return toSeconds(size, decimals, scaledDecimals);
|
||||
return toSeconds(size / 100, decimals, scaledDecimals);
|
||||
}
|
||||
|
||||
export function toClockMilliseconds(size: number, decimals: DecimalCount) {
|
||||
|
||||
Reference in New Issue
Block a user