Reset filterFreeze when updating data.

This commit is contained in:
Arik Fraimovich 2014-03-17 20:25:25 +02:00
parent f3d46355af
commit 9a04535e6b

View File

@ -8,6 +8,7 @@
if ('query_result' in props) {
this.status = "done";
this.filters = undefined;
this.filterFreeze = undefined;
_.each(this.query_result.data.rows, function (row) {
_.each(row, function (v, k) {
@ -28,6 +29,7 @@
this.query_result = {};
this.status = "waiting";
this.filters = undefined;
this.filterFreeze = undefined;
this.updatedAt = moment();