Explorar el Código

Small fix to influxdb query builder, should update raw query after building query

Torkel Ödegaard hace 11 años
padre
commit
f002ef105e
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/app/services/influxdb/influxQueryBuilder.js

+ 1 - 0
src/app/services/influxdb/influxQueryBuilder.js

@@ -41,6 +41,7 @@ function () {
     }
 
     query += " order asc";
+    target.query = query;
 
     return query;
   };