From a9f211dfd5db96ebf50d3233d52c3312e237c80f Mon Sep 17 00:00:00 2001 From: yuri Date: Fri, 20 Apr 2018 16:02:25 +0300 Subject: [PATCH] notify loading --- client/src/views/record/list.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/views/record/list.js b/client/src/views/record/list.js index afe8d3dc14..ef6df5aff2 100644 --- a/client/src/views/record/list.js +++ b/client/src/views/record/list.js @@ -598,7 +598,7 @@ Espo.define('views/record/list', 'view', function (Dep) { return false; } - this.notify('Loading...'); + Espo.Ui.notify(this.translate('loading', 'messages')); var ids = false; var allResultIsChecked = this.allResultIsChecked; if (!allResultIsChecked) { @@ -1251,7 +1251,7 @@ Espo.define('views/record/list', 'view', function (Dep) { var viewName = this.getMetadata().get('clientDefs.' + scope + '.modalViews.detail') || 'views/modals/detail'; if (!this.quickDetailDisabled) { - this.notify('Loading...'); + Espo.Ui.notify(this.translate('loading', 'messages')); var options = { scope: scope, @@ -1302,7 +1302,7 @@ Espo.define('views/record/list', 'view', function (Dep) { var viewName = this.getMetadata().get('clientDefs.' + scope + '.modalViews.edit') || 'views/modals/edit'; if (!this.quickEditDisabled) { - this.notify('Loading...'); + Espo.Ui.notify(this.translate('loading', 'messages')); var options = { scope: scope, id: id,