Browse Source

add comment

ryan 6 years ago
parent
commit
84fa9be29f
1 changed files with 2 additions and 0 deletions
  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)) {