This commit is contained in:
Natsumi
2022-04-25 18:15:52 +12:00
parent b8ad02da95
commit 54e8e98533
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -19053,11 +19053,13 @@ speechSynthesis.getVoices();
callback: (action) => { callback: (action) => {
if (action !== 'confirm') { if (action !== 'confirm') {
this.gameLogDisabled = !this.gameLogDisabled; 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); $app = new Vue($app);
+1 -1
View File
@@ -1451,7 +1451,7 @@ html
el-dropdown-item(icon="el-icon-delete" command="Unfriend" divided) Unfriend el-dropdown-item(icon="el-icon-delete" command="Unfriend" divided) Unfriend
el-tabs(ref="userDialogTabs" @tab-click="userDialogTabClick") el-tabs(ref="userDialogTabs" @tab-click="userDialogTabClick")
el-tab-pane(label="Info") 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") div(style="flex:none")
location(:location="userDialog.ref.location") location(:location="userDialog.ref.location")
template(v-if="userDialog.ref.location && userDialog.ref.location !== 'private' && userDialog.ref.location !== 'offline'") template(v-if="userDialog.ref.location && userDialog.ref.location !== 'private' && userDialog.ref.location !== 'offline'")