From 173b5b53739d6cee690b2cdf39c90ea103ce22c3 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 20 Nov 2018 12:54:31 +0300 Subject: [PATCH] Fix bug when disable buttons (page break) --- apps/common/main/lib/component/Button.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/common/main/lib/component/Button.js b/apps/common/main/lib/component/Button.js index 28c23636f..6076f836c 100644 --- a/apps/common/main/lib/component/Button.js +++ b/apps/common/main/lib/component/Button.js @@ -132,7 +132,8 @@ define([ }; ButtonsArray.prototype.setDisabled = function(disable) { - if ( _disabled != disable ) { + // if ( _disabled != disable ) //bug when disable buttons outside the group + { _disabled = disable; this.forEach( function(button) {