diff options
| author | Henry Jameson <me@hjkos.com> | 2024-09-16 03:06:19 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-09-17 22:57:39 +0300 |
| commit | 5bbfa5ab255bd1f61582d49a2c884cbe2df906fd (patch) | |
| tree | a9834bf412c19e9d53e6527538b089440190fd2e /src/App.js | |
| parent | 2abde63afc9ecdd4f1faa070650236597fbbf116 (diff) | |
attemt to fix production
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -46,9 +46,11 @@ export default { }), watch: { themeApplied (value) { - document.querySelector('#app').classList.remove('hidden') - document.querySelector('#splash').classList.add('hidden') - document.querySelector('#status').textContent = this.$t('splash.fun_' + Math.ceil(Math.random() * 4)) + this.$nextTick(() => { + document.querySelector('#app').classList.remove('hidden') + document.querySelector('#splash').classList.add('hidden') + document.querySelector('#status').textContent = this.$t('splash.fun_' + Math.ceil(Math.random() * 4)) + }) } }, created () { |
