Merge pull request #2685 from alecmerdler/sentry-286610017

Fix Infinite $digest Cycle on Manual Build Trigger Modal
This commit is contained in:
Alec Merdler 2017-06-05 14:27:51 -07:00 committed by GitHub
commit 6321d08024
2 changed files with 1 additions and 5 deletions

View file

@ -45,7 +45,7 @@
<!-- Regex -->
<div ng-switch-when="regex">
<input type="text" class="form-control" ng-model="parameters[field.name]"
ng-pattern="getPattern(field)"
ng-pattern="field.regex"
placeholder="{{ field.placeholder }}"
ng-name="field.name"
id="{{ field.name }}"

View file

@ -34,10 +34,6 @@ angular.module('quay').directive('manualTriggerBuildDialog', function () {
}, ApiService.errorDisplay('Could not start build'));
};
$scope.getPattern = function(field) {
return new RegExp(field.regex);
};
$scope.show = function() {
$scope.parameters = {};
$scope.fieldOptions = {};