mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #32189 from nextcloud/fix/local_loading_for_profile
Mount Profile view after DOMContentLoaded
This commit is contained in:
commit
768da60ae2
3 changed files with 7 additions and 4 deletions
|
|
@ -43,4 +43,7 @@ Vue.mixin({
|
|||
})
|
||||
|
||||
const View = Vue.extend(Profile)
|
||||
new View().$mount('#vue-profile')
|
||||
|
||||
window.addEventListener('DOMContentLoaded', () => {
|
||||
new View().$mount('#vue-profile')
|
||||
})
|
||||
|
|
|
|||
4
dist/core-profile.js
vendored
4
dist/core-profile.js
vendored
File diff suppressed because one or more lines are too long
2
dist/core-profile.js.map
vendored
2
dist/core-profile.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue