Stepper changes 94/78994/2
authorArundathi Patil <arundpil@in.ibm.com>
Fri, 22 Feb 2019 08:11:09 +0000 (13:41 +0530)
committerArundathi Patil <arundpil@in.ibm.com>
Fri, 22 Feb 2019 09:35:26 +0000 (09:35 +0000)
Changed the sequence of steps in blueprint creation. Moved deploy step
before test

Issue-ID: CCSDK-1069
Change-Id: If40d7f91749521cb46524202f311be44ab2bc86f
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html

index 64556fb..5098d56 100644 (file)
@@ -32,14 +32,14 @@ limitations under the License.
                     <button mat-button matStepperNext class="matStepNextBtn">Proceed</button>
                 </div>
             </mat-step>
-            <mat-step [stepControl]="thirdFormGroup">
-                <ng-template matStepLabel>Test</ng-template>
-                <app-test-template></app-test-template>
-            </mat-step>
             <mat-step [stepControl]="thirdFormGroup">
                 <ng-template matStepLabel>Deploy</ng-template>
                 <app-deploy-template></app-deploy-template>
+            </mat-step>            
+            <mat-step [stepControl]="thirdFormGroup">
+                <ng-template matStepLabel>Test</ng-template>
+                <app-test-template></app-test-template>
             </mat-step>
         </mat-horizontal-stepper>
     </mat-card-content>
-</mat-card>
\ No newline at end of file
+</mat-card>