Skip to content

Commit

Permalink
Merge pull request #452 from Optum/master
Browse files Browse the repository at this point in the history
fix for update pages being disabled
  • Loading branch information
jdweeks authored Mar 28, 2019
2 parents 25fe808 + 65f6145 commit 4a4e292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/partials/includes/serviceHeader.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<div class="col-xs-9">
<div class="input-group">
<div class="input-group-addon">/virtual<span ng-show="canChangeType">/{{servicevo.sut.name}}/</span></div>
<input ng-required="servicevo.type !== 'MQ'" type="text" id="service_endpoint" class="form-control" ng-model="servicevo.basePath" placeholder="Enter Base Path" ng-disabled="!canChangeType" ng-pattern="/^[A-z0-9-._~!&'()*+,;=:@%]+(\/*[A-z0-9-._~!&'()*+,;=:@%]+)*$/">
<input ng-required="servicevo.type !== 'MQ' && canChangeType" type="text" id="service_endpoint" class="form-control" ng-model="servicevo.basePath" placeholder="Enter Base Path" ng-disabled="!canChangeType" ng-pattern="canChangeType ? '[A-z0-9-._~!&()*+,;=:@%]+(\/*[A-z0-9-._~!&()*+,;=:@%]+)*' : ''">
</div>
</div>
</div>
Expand Down

0 comments on commit 4a4e292

Please sign in to comment.