Skip to content
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
350
Merge Requests
60
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
15255571
Commit
15255571
authored
43 minutes ago
by
Olivia Madrid
Browse files
Options
Download
remove no-scroll class when modal is closed via input from parent component
parent
b3ccc5bc
token-onboarding-2331
1 merge request
!698
Wallet token onboarding and settings
Pipeline
#108181200
running with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
src/app/modules/wallet/v2/modal/modal.component.ts
View file @
15255571
...
...
@@ -18,9 +18,7 @@ export class WalletModalComponent implements OnDestroy {
@
Input
()
public
set
showModal
(
val
:
boolean
)
{
this
.
_showModal
=
val
;
if
(
val
)
{
this
.
show
();
}
val
?
this
.
show
()
:
this
.
close
();
}
@
Output
()
closeModal
:
EventEmitter
<
any
>
=
new
EventEmitter
();
...
...
This diff is collapsed.
Please
register
or
sign in
to comment