summaryrefslogtreecommitdiffstats
path: root/public/src/app/main
diff options
context:
space:
mode:
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;