From be2f2fd98690ddda74ef8f8e9748dc81ec15875c Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sun, 5 Mar 2023 01:07:16 +1300 Subject: [PATCH] Bug fix --- html/src/index.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/src/index.pug b/html/src/index.pug index c7006223..4e8f154a 100644 --- a/html/src/index.pug +++ b/html/src/index.pug @@ -3839,8 +3839,8 @@ html //- dialog: change log el-dialog.x-dialog(:before-close="beforeDialogClose" @mousedown.native="dialogMouseDown" @mouseup.native="dialogMouseUp" ref="changeLogDialog" :visible.sync="changeLogDialog.visible" :title="$t('dialog.change_log.header')" width="800px") .changelog-dialog(v-if="changeLogDialog.visible") - h2(v-text="VRCXUpdateDialog.updateJson.name") - vue-markdown(:source="VRCXUpdateDialog.updateJson.body") + h2(v-text="VRCXUpdateDialog.updateJson?.name") + vue-markdown(:source="VRCXUpdateDialog.updateJson?.body") template(#footer) el-button(type="small" @click="openExternalLink('https://github.com/vrcx-team/VRCX/releases')") {{ $t('dialog.change_log.github') }} el-button(type="small" @click="openExternalLink('https://patreon.com/Natsumi_VRCX')") {{ $t('dialog.change_log.donate') }}