From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/components/app/annotation/add-annotation-modal/index.tsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/app/annotation/add-annotation-modal/index.tsx b/app/components/app/annotation/add-annotation-modal/index.tsx index 274a57a..c6cfb54 100644 --- a/app/components/app/annotation/add-annotation-modal/index.tsx +++ b/app/components/app/annotation/add-annotation-modal/index.tsx @@ -56,7 +56,7 @@ try { await onAdd(payload) } - catch { + catch (e) { } setIsSaving(false) @@ -76,7 +76,7 @@ maxWidthClassName='!max-w-[480px]' title={t('appAnnotation.addModal.title') as string} body={( - <div className='space-y-6 p-6 pb-4'> + <div className='p-6 pb-4 space-y-6'> <EditItem type={EditItemType.Query} content={question} @@ -93,11 +93,11 @@ ( <div> {isAnnotationFull && ( - <div className='mb-4 mt-6 px-6'> + <div className='mt-6 mb-4 px-6'> <AnnotationFull /> </div> )} - <div className='system-sm-medium flex h-16 items-center justify-between rounded-bl-xl rounded-br-xl border-t border-divider-subtle bg-background-section-burn px-4 text-text-tertiary'> + <div className='px-4 flex h-16 items-center justify-between border-t border-divider-subtle bg-background-section-burn rounded-bl-xl rounded-br-xl system-sm-medium text-text-tertiary'> <div className='flex items-center space-x-2' > -- Gitblit v1.8.0