Merge pull request #1487 from matiaspando/error/minAmount

Added a validation for min amount
This commit is contained in:
Matias Alejo Garcia 2014-09-29 12:10:18 -03:00
commit 3bc8e449c5
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ angular.module('copayApp.directives')
scope.notEnoughAmount = null;
}
} else {
ctrl.$setValidity('enoughAmount', false);
scope.notEnoughAmount = null;
}
return value;