summaryrefslogtreecommitdiffstats
path: root/public/src/app/main
diff options
context:
space:
mode:
authorEran (ev672n), Vosk <ev672n@att.com>2018-10-29 19:33:00 +0200
committerEran (ev672n), Vosk <ev672n@att.com>2018-10-29 19:33:00 +0200
commit2dbff5ec1853f5f48354e0bbdecfae2d7489fbbb (patch)
tree932b4549f366400753354b7e5937f7ecae40511f /public/src/app/main
parente0cf0c1c4a425816704a1e5b325fe7c8b9d2759a (diff)
Sync the code between repositories Change-Id: Ib7ee4d0e0f53b58a9bf97dadb15e094789b4f915 Issue-ID: SDC-1874 Signed-off-by: Eran (ev672n), Vosk <ev672n@att.com>
Diffstat (limited to 'public/src/app/main')
-rw-r--r--public/src/app/main/main.component.html3
-rw-r--r--public/src/app/main/main.component.ts3
2 files changed, 2 insertions, 4 deletions
diff --git a/public/src/app/main/main.component.html b/public/src/app/main/main.component.html
index 182ed9c..10d86e2 100644
--- a/public/src/app/main/main.component.html
+++ b/public/src/app/main/main.component.html
@@ -39,10 +39,9 @@
</button>
<div *ngIf="this.store.isEditMode" style="display: flex;">
- <button mat-icon-button (click)="saveCDUMP()" [disabled]="!store.cdumpIsDirty || store.viewOnly" data-tests-id="save-btn">
+ <button mat-icon-button (click)="saveCDUMP()" [disabled]="!store.cdumpIsDirty || store.viewOnly" data-tests-id="save-btn" style="margin-right: 10px;">
<span style="width: 100%;
height: 100%;
- padding-right: 20px;
display: flex;
justify-content: center;
align-items: center;"
diff --git a/public/src/app/main/main.component.ts b/public/src/app/main/main.component.ts
index 8ba0d1f..f4b76bc 100644
--- a/public/src/app/main/main.component.ts
+++ b/public/src/app/main/main.component.ts
@@ -56,7 +56,7 @@ export class MainComponent {
success => {
console.log(success);
this.store.mcUuid = success.vfcmt.uuid;
- this.store.generalflow = '';
+ this.store.generalflow = 'edit';
this.store.mcName = success.vfcmt.name;
this.store.flowType = success.cdump.flowType;
console.log(this.cleanProperty(success));
@@ -119,7 +119,6 @@ export class MainComponent {
this.location.path();
// this.location.go();
this.store.mcUuid = success.vfcmt.uuid;
- this.store.generalflow = '';
this.store.mcName = success.vfcmt.name;
console.log(this.cleanProperty(success));
this.store.cdump = success.cdump;