Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
retribute.me
webclient
Commits
38226648
Verified
Commit
38226648
authored
Jun 10, 2019
by
Eliot Berriot
Browse files
Fixed scrolling issue after model closing
parent
137a10c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/components/Suggestions.vue
View file @
38226648
...
...
@@ -139,6 +139,7 @@ export default {
aggregatedSuggestions
:
this
.
$store
.
state
.
cache
.
aggregatedSuggestions
||
{},
retributeProfiles
:
this
.
$store
.
state
.
cache
.
retributeProfiles
||
{},
loadingRetributeProfiles
:
[],
providers
:
this
.
$store
.
state
.
cache
.
providers
||
{},
filters
:
filters
,
accountToDisconnect
:
null
,
}
...
...
@@ -372,7 +373,12 @@ export default {
sortedAccounts
:
{
handler
(
v
)
{
let
elems
=
document
.
querySelectorAll
(
'
.modal
'
)
M
.
Modal
.
init
(
elems
,
{})
M
.
Modal
.
init
(
elems
,
{
onCloseEnd
()
{
// cf https://github.com/Dogfalo/materialize/issues/4622#issuecomment-298072452
document
.
body
.
style
.
removeProperty
(
"
overflow
"
);
}
})
},
immediate
:
true
}
...
...
src/views/About.vue
View file @
38226648
...
...
@@ -103,7 +103,12 @@ export default {
},
mounted
()
{
var
elems
=
document
.
querySelectorAll
(
'
.modal
'
)
var
instances
=
M
.
Modal
.
init
(
elems
,
{})
M
.
Modal
.
init
(
elems
,
{
onCloseEnd
()
{
// cf https://github.com/Dogfalo/materialize/issues/4622#issuecomment-298072452
document
.
body
.
style
.
removeProperty
(
"
overflow
"
);
}
})
},
computed
:
{
sources
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment