diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-03-26 21:39:39 +0530 |
---|---|---|
committer | IBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com> | 2019-03-26 21:41:29 +0530 |
commit | cedefad45b059d0d053db3a925ac9212abd9ec36 (patch) | |
tree | d4df84109ad16d17fcdda54e3a1a84fd06c2e29c /cds-ui/client | |
parent | 4aee3138b446163fe45d4a92758e16068132ac41 (diff) |
Modify template changes
Enabled deploy and publish buttons
Issue-ID: CCSDK-1171
Change-Id: I74cc9f4ce6a07d969a85427a67b3f052e0d70520
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html index a77be5ba0..754ba214c 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html @@ -33,12 +33,12 @@ limitations under the License. <div style="width: 100%;height: 3em;"> <div style="display: flex;flex-direction: row-reverse"> <button class="btn-active" (click)="downloadCBA()">Download</button> - <button [disabled]="!isEnriched" [ngClass]="{ 'mat-button-active': isEnriched, 'mat-button-disablled': !isEnriched}" mat-button [matMenuTriggerFor]="menu">Deploy</button> + <button class="mat-button-active" mat-button [matMenuTriggerFor]="menu">Deploy</button> <mat-menu #menu="matMenu"> <button mat-menu-item>Deploy</button> <button mat-menu-item>Test</button> </mat-menu> - <button [disabled]="!isEnriched" [ngClass]="{ 'btn-active': isEnriched, 'btn-disablled': !isEnriched}" class="btn-active">Publish</button> + <button [disabled]="!isEnriched" class="btn-active">Publish</button> <button class="btn-active">Save</button> <button class="btn-active">Enrich</button> |