Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
802
Merge Requests
53
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
ab24317b
Commit
ab24317b
authored
12 minutes ago
by
Ben Hayward
Browse files
Options
Download
Flipping logic on recurring wire cookie to default to on
parent
59bfb7e4
feat/store-recurring-checkbox-2001
1 merge request
!630
[Sprint/QuietQuial](feat}: Remembering previous state of recurring wire checkbox. #2001
Pipeline
#93900084
canceled with stages
in 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/app/modules/wire/creator/creator.component.ts
View file @
ab24317b
...
...
@@ -246,9 +246,8 @@ export class WireCreatorComponent {
}
setDefaults
()
{
this
.
wire
.
amount
=
1
;
this
.
wire
.
recurring
=
this
.
storage
.
get
(
'
preferred-recurring-wire-state
'
)
===
'
1
'
;
this
.
storage
.
get
(
'
preferred-recurring-wire-state
'
)
!==
'
0
'
;
let
payloadType
=
this
.
storage
.
get
(
'
preferred-payment-method
'
);
if
([
'
onchain
'
,
'
offchain
'
].
indexOf
(
payloadType
)
===
-
1
)
{
payloadType
=
'
offchain
'
;
...
...
This diff is collapsed.
Please
register
or
sign in
to comment