mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 22:36:05 +02:00
Fix custom avatar content tags removing incorrectly
This commit is contained in:
@@ -124,6 +124,7 @@
|
|||||||
if (newVal) {
|
if (newVal) {
|
||||||
updateAvatarTagsSelection();
|
updateAvatarTagsSelection();
|
||||||
updateSelectedAvatarTags();
|
updateSelectedAvatarTags();
|
||||||
|
updateInputAvatarTags();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@@ -270,7 +271,7 @@
|
|||||||
D.contentSex = true;
|
D.contentSex = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!D.selectedTags.includes(`content_${tag}`)) {
|
if (tag && !D.selectedTags.includes(`content_${tag}`)) {
|
||||||
D.selectedTags.push(`content_${tag}`);
|
D.selectedTags.push(`content_${tag}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user