From 06fad628bcd88956f381bdbb1e5c4e5387044a3e Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Sat, 5 Oct 2019 00:23:34 +0200 Subject: [PATCH] vnCrudModel.status fix --- front/core/components/crud-model/crud-model.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/front/core/components/crud-model/crud-model.js b/front/core/components/crud-model/crud-model.js index 0839881ab..41b5390a7 100644 --- a/front/core/components/crud-model/crud-model.js +++ b/front/core/components/crud-model/crud-model.js @@ -208,7 +208,9 @@ export default class CrudModel extends ModelProxy { this.cancelRequest(); this.canceler = this.$q.defer(); this.isPaging = append; - if (!append) this.status = 'loading'; + + if (!append && this.status != 'ready') + this.status = 'loading'; let params = Object.assign( {filter},