fix: can not input param value in tool test modal (#7281)

This commit is contained in:
wellCh4n 2024-08-15 10:31:34 +08:00 committed by GitHub
parent 681ec6f845
commit 8f5d8397f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -327,11 +327,6 @@ const EditCustomCollectionModal: FC<Props> = ({
<Button variant='primary' onClick={handleSave}>{t('common.operation.save')}</Button> <Button variant='primary' onClick={handleSave}>{t('common.operation.save')}</Button>
</div> </div>
</div> </div>
</div>
}
isShowMask={true}
clickOutsideNotOpen={true}
/>
{showEmojiPicker && <EmojiPicker {showEmojiPicker && <EmojiPicker
onSelect={(icon, icon_background) => { onSelect={(icon, icon_background) => {
setEmoji({ content: icon, background: icon_background }) setEmoji({ content: icon, background: icon_background })
@ -357,6 +352,11 @@ const EditCustomCollectionModal: FC<Props> = ({
onHide={() => setIsShowTestApi(false)} onHide={() => setIsShowTestApi(false)}
/> />
)} )}
</div>
}
isShowMask={true}
clickOutsideNotOpen={true}
/>
</> </>
) )