fix(tickscript): repair editor scrolling

pull/5598/head
Pavel Zavora 2020-10-20 17:23:04 +02:00
parent d15393614d
commit d8d8469b5b
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,7 @@
1. [#5596](https://github.com/influxdata/chronograf/pull/5596): Show rule name from tickscript.
1. [#5597](https://github.com/influxdata/chronograf/pull/5597): Do not truncate dashboard name with lots of room.
1. [#5598](https://github.com/influxdata/chronograf/pull/5598): Repair TICKscript editor scrolling.
### Features

View File

@ -13,7 +13,9 @@ $tickscript-controls-height: 60px;
.tickscript-controls,
.tickscript-console,
.tickscript-editor {
width: 100%;
// cannot use 100%, since it does not work in FireFox
// see https://github.com/influxdata/chronograf/issues/5037
width: calc(100vw - 60px);
}
.tickscript-console,
.tickscript-controls {