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:
Rene Vergara 2022-10-08 08:52:09 -05:00
parent 72f4d676f0
commit 41b899b361
Signed by: pitmutt
GPG key ID: 65122AD495A7F5B2
3 changed files with 8 additions and 2 deletions

View file

@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased] ## [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 ## [1.3.0] - 2022-10-01
### Added ### Added

View file

@ -1,6 +1,6 @@
{ {
"name": "zgo", "name": "zgo",
"version": "1.3.0", "version": "1.3.1",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve", "start": "ng serve",

View file

@ -138,7 +138,7 @@ export class SettingsComponent implements OnInit {
this.owner.zats = this.settingsForm.value.useZats; this.owner.zats = this.settingsForm.value.useZats;
this.owner.payconf = this.settingsForm.value.useVKey; this.owner.payconf = this.settingsForm.value.useVKey;
this.owner.viewkey = this.settingsForm.value.vKey; 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); this.dialogRef.close(this.owner);
} }