Skip to content

Commit 16bc8af

Browse files
authored
Merge pull request #32193 from nextcloud/backport/32189/stable24
[stable24] Mount Profile view after DOMContentLoaded
2 parents 400f378 + fafc3ca commit 16bc8af

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

core/src/profile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,7 @@ Vue.mixin({
4343
})
4444

4545
const View = Vue.extend(Profile)
46-
new View().$mount('#vue-profile')
46+
47+
window.addEventListener('DOMContentLoaded', () => {
48+
new View().$mount('#vue-profile')
49+
})

0 commit comments

Comments
 (0)