diff --git a/html/src/app.js b/html/src/app.js index 368153f5..04b7ea95 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -19053,11 +19053,13 @@ speechSynthesis.getVoices(); callback: (action) => { if (action !== 'confirm') { this.gameLogDisabled = !this.gameLogDisabled; + configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled); } } }); + } else { + configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled); } - configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled); }; $app = new Vue($app); diff --git a/html/src/index.pug b/html/src/index.pug index 287d6295..97f200ca 100644 --- a/html/src/index.pug +++ b/html/src/index.pug @@ -1451,7 +1451,7 @@ html el-dropdown-item(icon="el-icon-delete" command="Unfriend" divided) Unfriend el-tabs(ref="userDialogTabs" @tab-click="userDialogTabClick") el-tab-pane(label="Info") - div(v-if="userDialog.ref.location" style="display:flex;flex-direction:column;margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid #eee") + div(v-if="userDialog.ref.location" style="display:flex;flex-direction:column;margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid #eee;max-height:190px") div(style="flex:none") location(:location="userDialog.ref.location") template(v-if="userDialog.ref.location && userDialog.ref.location !== 'private' && userDialog.ref.location !== 'offline'")