mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
Fix adding avatar search provider and bio links
This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
<el-input
|
<el-input
|
||||||
v-for="(link, index) in bioDialog.bioLinks"
|
v-for="(link, index) in bioDialog.bioLinks"
|
||||||
:key="index"
|
:key="index"
|
||||||
:value="link"
|
v-model="bioDialog.bioLinks[index]"
|
||||||
size="small"
|
size="small"
|
||||||
style="margin-top: 5px">
|
style="margin-top: 5px">
|
||||||
<img
|
<img
|
||||||
|
|||||||
@@ -596,7 +596,11 @@ export const useUserStore = defineStore('User', () => {
|
|||||||
ref.$isVRCPlus = ref.tags.includes('system_supporter');
|
ref.$isVRCPlus = ref.tags.includes('system_supporter');
|
||||||
appearanceSettingsStore.applyUserTrustLevel(ref);
|
appearanceSettingsStore.applyUserTrustLevel(ref);
|
||||||
applyUserLanguage(ref);
|
applyUserLanguage(ref);
|
||||||
if (ref.platform && ref.platform !== 'offline') {
|
if (
|
||||||
|
ref.platform &&
|
||||||
|
ref.platform !== 'offline' &&
|
||||||
|
ref.platform !== 'web'
|
||||||
|
) {
|
||||||
ref.$platform = ref.platform;
|
ref.$platform = ref.platform;
|
||||||
} else {
|
} else {
|
||||||
ref.$platform = ref.last_platform;
|
ref.$platform = ref.last_platform;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<el-input
|
<el-input
|
||||||
v-for="(provider, index) in avatarRemoteDatabaseProviderList"
|
v-for="(provider, index) in avatarRemoteDatabaseProviderList"
|
||||||
:key="index"
|
:key="index"
|
||||||
:value="provider"
|
v-model="avatarRemoteDatabaseProviderList[index]"
|
||||||
size="small"
|
size="small"
|
||||||
style="margin-top: 5px"
|
style="margin-top: 5px"
|
||||||
@change="saveAvatarProviderList">
|
@change="saveAvatarProviderList">
|
||||||
|
|||||||
Reference in New Issue
Block a user