mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-20 23:33:50 +02:00
items != props
This commit is contained in:
@@ -98,6 +98,10 @@
|
||||
class="x-friend-item"
|
||||
value="drones"
|
||||
:label="$t('dialog.new_instance.content_drones')"></el-option>
|
||||
<el-option
|
||||
class="x-friend-item"
|
||||
value="props"
|
||||
:label="$t('dialog.new_instance.content_items')"></el-option>
|
||||
</el-option-group>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
@@ -367,7 +367,7 @@
|
||||
}}</el-dropdown-item>
|
||||
<template v-if="userDialog.ref.id === API.currentUser.id">
|
||||
<el-dropdown-item icon="el-icon-picture-outline" command="Manage Gallery" divided>{{
|
||||
t('dialog.user.actions.manage_gallery_icon')
|
||||
t('dialog.user.actions.manage_gallery_inventory_icon')
|
||||
}}</el-dropdown-item>
|
||||
<el-dropdown-item icon="el-icon-s-custom" command="Show Avatar Author">{{
|
||||
t('dialog.user.actions.show_avatar_author')
|
||||
|
||||
@@ -67,6 +67,10 @@
|
||||
<el-checkbox v-model="setWorldTagsDialog.drones">
|
||||
{{ $t('dialog.new_instance.content_drones') }}
|
||||
</el-checkbox>
|
||||
<br />
|
||||
<el-checkbox v-model="setWorldTagsDialog.props">
|
||||
{{ $t('dialog.new_instance.content_items') }}
|
||||
</el-checkbox>
|
||||
<template #footer>
|
||||
<div style="display: flex">
|
||||
<el-button size="small" @click="setWorldTagsDialog.visible = false">
|
||||
@@ -121,7 +125,8 @@
|
||||
stickers: true,
|
||||
pedestals: true,
|
||||
prints: true,
|
||||
drones: true
|
||||
drones: true,
|
||||
props: true
|
||||
}
|
||||
};
|
||||
},
|
||||
@@ -203,6 +208,9 @@
|
||||
case 'feature_drones_disabled':
|
||||
D.drones = false;
|
||||
break;
|
||||
case 'feature_props_disabled':
|
||||
D.props = false;
|
||||
break;
|
||||
}
|
||||
});
|
||||
D.authorTags = authorTags.toString();
|
||||
@@ -272,6 +280,9 @@
|
||||
if (!D.drones) {
|
||||
tags.unshift('feature_drones_disabled');
|
||||
}
|
||||
if (!D.props) {
|
||||
tags.unshift('feature_props_disabled');
|
||||
}
|
||||
worldRequest
|
||||
.saveWorld({
|
||||
id: this.worldId,
|
||||
|
||||
@@ -267,7 +267,7 @@
|
||||
{{ $t('dialog.world.actions.change_preview') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item icon="el-icon-edit" command="Change Tags">
|
||||
{{ $t('dialog.world.actions.change_tags') }}
|
||||
{{ $t('dialog.world.actions.change_warnings_settings_tags') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item icon="el-icon-edit" command="Change Allowed Domains">
|
||||
{{ $t('dialog.world.actions.change_allowed_video_player_domains') }}
|
||||
|
||||
Reference in New Issue
Block a user