Skip to content

Commit

Permalink
Merge pull request tmobile#75 in CAP/jazz_webapp from hotfix/create-s…
Browse files Browse the repository at this point in the history
…ervice to master

* commit 'c8a9bed80b25695c30e2b5d938c605cf462a184c':
  create-service.component.ts edited online with Bitbucket
  create-service.component.html edited online with Bitbucket
  environment.ts edited online with Bitbucket
  environment.prod.ts edited online with Bitbucket
  create-service.component.html edited online with Bitbucket
  environment.ts edited online with Bitbucket
  environment.prod.ts edited online with Bitbucket
  • Loading branch information
Satish Malireddi authored and Satish Malireddi committed Oct 31, 2018
2 parents 24f78de + c8a9bed commit da4760a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,20 @@ <h4 class="bold-title">
<div class="input-field-container">
<section class="col-lg-3 col-md-3 pad-left0">
<div class="radio-container">
<input type="radio" class='test-focus' name="runtime" id="nodejs" [value]="nodejs" [checked]="runtime == 'nodejs'" (click)="onSelectionChange(runtimeKeys[0])">
<label for="nodejs"><span class='outer'></span><span class="background"></span>{{runtimeObject[runtimeKeys[0]]}}</label>
<input type="radio" class='test-focus' name="runtime" [id]="runtimeKeys[0]" [value]="runtimeKeys[0]" [checked]="runtime == 'runtimeKeys[0]'" (click)="onSelectionChange(runtimeKeys[0])">
<label [for]="runtimeKeys[0]"><span class='outer'></span><span class="background"></span>{{runtimeObject[runtimeKeys[0]]}}</label>
</div>
</section>
<section class="col-lg-3 col-md-3 pad-left0">
<div class="radio-container">
<input type="radio" name="runtime" id="java" [value]="java" [checked]="runtime == 'java'" (click)="onSelectionChange(runtimeKeys[0])">
<label for="java"><span class='outer'></span><span class="background"></span>{{runtimeObject[runtimeKeys[1]]}}</label>
<input type="radio" name="runtime" [id]="runtimeKeys[1]" [value]="runtimeKeys[1]" [checked]="runtime == 'runtimeKeys[1]'" (click)="onSelectionChange(runtimeKeys[1])">
<label [for]="runtimeKeys[1]"><span class='outer'></span><span class="background"></span>{{runtimeObject[runtimeKeys[1]]}}</label>
</div>
</section>
<section class="col-lg-3 col-md-3 pad-left0">
<div class="radio-container">
<input type="radio" name="runtime" id="python" [value]="python" [checked]="runtime == 'python'" (change)="onSelectionChange(runtimeKeys[0])">
<label for="python"><span class='outer'></span><span class="background"></span>{{runtimeObject[runtimeKeys[2]]}}</label>
<input type="radio" name="runtime" [id]="runtimeKeys[2]" [value]="runtimeKeys[2]" [checked]="runtime == 'runtimeKeys[2]'" (change)="onSelectionChange(runtimeKeys[2])">
<label [for]="runtimeKeys[2]"><span class='outer'></span><span class="background"></span>{{runtimeObject[runtimeKeys[2]]}}</label>
</div>
</section>
<section class="col-lg-3 col-md-3 pad-left0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ export class CreateServiceComponent implements OnInit {

// function for opening and closing create service popup
closeCreateService(serviceRequest) {
this.onClose.emit(false);
if (serviceRequest) {
this.servicelist.serviceCall();
}
Expand All @@ -207,7 +208,6 @@ export class CreateServiceComponent implements OnInit {
this.serviceRequestFailure = false;
this.serviceRequestSuccess = false;
this.approversList = this.approversListShow;
this.onClose.emit(false);
}


Expand Down
2 changes: 1 addition & 1 deletion app/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const environment = {
envName: "jazz",
multi_env: false,
serviceTabs: ['overview', 'access control', 'metrics', 'logs'],
envLists : {"nodejs8.10" : "Nodejs 8.10","python2.7" : "Python 2.7", "java8" : "Java 8" },
envLists : {"nodejs8.10" : "Nodejs 8.10","python2.7" : "Python 2.7", "java8" : "Java 8" },
environmentTabs: ['overview', 'deployments', 'code quality', 'assets', 'metrics', 'logs', 'clearwater'],
urls: {
docs_link: "https://docs.jazz.corporate.t-mobile.com",
Expand Down

0 comments on commit da4760a

Please sign in to comment.