【代码评审】AI:绘图 other 优化

This commit is contained in:
YunaiV
2024-07-13 00:06:27 +08:00
parent 369860a055
commit 69940e2780
3 changed files with 24 additions and 77 deletions

View File

@ -62,7 +62,7 @@ const platformOptions = [
value: AiPlatformEnum.STABLE_DIFFUSION
},
{
label: '其',
label: '其',
value: 'other'
}
]
@ -88,6 +88,7 @@ const handleRegeneration = async (image: ImageVO) => {
} else if (image.platform === AiPlatformEnum.STABLE_DIFFUSION) {
stableDiffusionRef.value.settingValues(image)
}
// TODO @fan貌似 other 重新设置不行?
}
</script>