Merge pull request #32189 from nextcloud/fix/local_loading_for_profile

Mount Profile view after DOMContentLoaded
pull/32196/head
Simon L 2022-04-27 19:15:55 +07:00 committed by GitHub
commit 768da60ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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')
})

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long