Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Jan 24, 2023
1 parent 667f9dd commit 4a8a275
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/AudioInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ const morphingTargetCharacters = computed<CharacterInfo[]>(() => {
const morphableTargets =
store.state.morphableTargetsInfo[baseEngineId]?.[baseStyleId] ?? {};
const morphableSyleIds = Object.entries(morphableTargets) // FIXME: Voiceにするべき
const morphableStyleIds = Object.entries(morphableTargets) // FIXME: Voiceにするべき
.filter(([, value]) => value.isMorphable)
.map(([styleId]) => parseInt(styleId));
Expand All @@ -693,7 +693,7 @@ const morphingTargetCharacters = computed<CharacterInfo[]>(() => {
.map((character) => {
const styles = character.metas.styles.filter(
(style) =>
morphableSyleIds.includes(style.styleId) &&
morphableStyleIds.includes(style.styleId) &&
style.engineId == baseEngineId
);
return {
Expand Down

0 comments on commit 4a8a275

Please sign in to comment.