Mount profile after DOMContentLoaded

Fix https://github.com/nextcloud/server/issues/32187

Signed-off-by: Louis Chemineau <louis@chmn.me>
pull/32189/head
Louis Chemineau 2 years ago
parent 5570661bbd
commit 93ee9cd592

@ -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
Loading…
Cancel
Save