Merge branch 'master' of https://gitlab.com/pitmutt/zgo into dbexport

This commit is contained in:
Rene V. Vergara A. 2022-10-08 09:08:33 -05:00
commit d4cdcd2a9a
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]
## [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

View File

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

View File

@ -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);
}