Skip to content

Commit

Permalink
productions fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DhaaraniCIT committed Jun 7, 2024
1 parent f686c39 commit 9962566
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ export class BusinessCentralAdvancedSettingsComponent implements OnInit {
this.memoPreviewText = memo[0];
this.advancedSettingForm.controls.memoStructure.patchValue(memo[1]);
this.advancedSettingForm.controls.memoStructure.valueChanges.subscribe((memoChanges) => {
this.memoStructure = memoChanges;
this.memoPreviewText = AdvancedSettingsModel.formatMemoPreview(this.memoStructure, this.defaultMemoOptions)[0];
this.memoPreviewText = AdvancedSettingsModel.formatMemoPreview(memoChanges, this.defaultMemoOptions)[0];
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export class QboAdvancedSettingsComponent implements OnInit {
this.memoPreviewText = memo[0];
this.advancedSettingForm.controls.memoStructure.patchValue(memo[1]);
this.advancedSettingForm.controls.memoStructure.valueChanges.subscribe((memoChanges) => {
this.memoPreviewText = AdvancedSettingsModel.formatMemoPreview(this.memoStructure, this.defaultMemoOptions)[0];
this.memoPreviewText = AdvancedSettingsModel.formatMemoPreview(memoChanges, this.defaultMemoOptions)[0];
});
}

Expand Down
2 changes: 1 addition & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ p {
}

.btn-text-primary:hover {
@apply tw-text-btn-tertiary-hover-text-color tw-bg-btn-tertiary-hover-bg tw-rounded-4-px tw-py-10-px;
@apply tw-text-btn-tertiary-hover-text-color tw-bg-btn-tertiary-hover-bg tw-rounded-4-px;
}

// Dialog
Expand Down

0 comments on commit 9962566

Please sign in to comment.