Merge pull request #32193 from nextcloud/backport/32189/stable24

[stable24] Mount Profile view after DOMContentLoaded
This commit is contained in:
Vincent Petry 2022-04-28 13:08:11 +02:00 committed by GitHub
commit 16bc8af0f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View file

@ -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