Fix #7
Squashed commit of the following: commit 5bb3c6d0add58e9260f750a2d1ae0026c0dc6b5e Author: Rene Vergara <rene@vergara.network> Date: Sat Oct 8 08:46:48 2022 -0500 Fix #7 commit e4d958d4dfbe38e53a93b91ee02c3b9f834b027c Author: Rene Vergara <rene@vergara.network> Date: Sat Oct 8 07:43:17 2022 -0500 Fix bug in settings saving commit 23b07c553f7ac9e60964e6de91c2f6b5a74748ab Author: Rene Vergara <rene@vergara.network> Date: Sat Oct 8 07:35:13 2022 -0500 Enable debugging
This commit is contained in:
parent
72f4d676f0
commit
41b899b361
3 changed files with 8 additions and 2 deletions
|
@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.3.1] - 2022-10-08
|
||||
|
||||
## Fixed
|
||||
|
||||
- Bug [#7](https://gitlab.com/pitmutt/zgo/-/issues/7) for saving a viewing key.
|
||||
|
||||
## [1.3.0] - 2022-10-01
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "zgo",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
|
|
|
@ -138,7 +138,7 @@ export class SettingsComponent implements OnInit {
|
|||
this.owner.zats = this.settingsForm.value.useZats;
|
||||
this.owner.payconf = this.settingsForm.value.useVKey;
|
||||
this.owner.viewkey = this.settingsForm.value.vKey;
|
||||
this.owner.invoices = this.settingsForm.value.proVersion
|
||||
//this.owner.invoices = this.settingsForm.value.proVersion
|
||||
this.dialogRef.close(this.owner);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue