Fix adding avatar search provider and bio links

This commit is contained in:
Natsumi
2025-07-30 20:01:26 +12:00
parent 153d4d4a8a
commit 9ea2b7dae3
3 changed files with 7 additions and 3 deletions

View File

@@ -20,7 +20,7 @@
<el-input
v-for="(link, index) in bioDialog.bioLinks"
:key="index"
:value="link"
v-model="bioDialog.bioLinks[index]"
size="small"
style="margin-top: 5px">
<img

View File

@@ -596,7 +596,11 @@ export const useUserStore = defineStore('User', () => {
ref.$isVRCPlus = ref.tags.includes('system_supporter');
appearanceSettingsStore.applyUserTrustLevel(ref);
applyUserLanguage(ref);
if (ref.platform && ref.platform !== 'offline') {
if (
ref.platform &&
ref.platform !== 'offline' &&
ref.platform !== 'web'
) {
ref.$platform = ref.platform;
} else {
ref.$platform = ref.last_platform;

View File

@@ -9,7 +9,7 @@
<el-input
v-for="(provider, index) in avatarRemoteDatabaseProviderList"
:key="index"
:value="provider"
v-model="avatarRemoteDatabaseProviderList[index]"
size="small"
style="margin-top: 5px"
@change="saveAvatarProviderList">