vnCrudModel.status fix
gitea/salix/dev This commit has test failures Details

This commit is contained in:
Juan Ferrer 2019-10-05 00:23:34 +02:00
parent eeef468964
commit 06fad628bc
1 changed files with 3 additions and 1 deletions

View File

@ -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},