ryan 6 лет назад
Родитель
Сommit
84fa9be29f
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      packages/grafana-ui/src/utils/processTimeSeries.ts

+ 2 - 0
packages/grafana-ui/src/utils/processTimeSeries.ts

@@ -13,6 +13,8 @@ interface Options {
   nullValueMode: NullValueMode;
 }
 
+// NOTE -- this should be refactored into a TableData utility file.
+// I left it as is so the merge changes are more clear.
 export function processTimeSeries({ data, xColumn, yColumn, nullValueMode }: Options): TimeSeriesVMs {
   const vmSeries = data.map((item, index) => {
     if (!isNumber(xColumn)) {