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/datasets/hit-testing/components/result-item-footer.tsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/datasets/hit-testing/components/result-item-footer.tsx b/app/components/datasets/hit-testing/components/result-item-footer.tsx index c06c5aa..66b053b 100644 --- a/app/components/datasets/hit-testing/components/result-item-footer.tsx +++ b/app/components/datasets/hit-testing/components/result-item-footer.tsx @@ -21,15 +21,15 @@ const { t } = useTranslation() return ( - <div className="mt-3 flex h-10 items-center justify-between border-t border-divider-subtle pl-3 pr-2"> - <div className="flex grow items-center space-x-1"> + <div className="mt-3 flex justify-between items-center h-10 pl-3 pr-2 border-t border-divider-subtle"> + <div className="grow flex items-center space-x-1"> <FileIcon type={docType} size="sm" /> - <span className="w-0 grow truncate text-[13px] font-normal text-text-secondary"> + <span className="grow w-0 truncate text-text-secondary text-[13px] font-normal"> {docTitle} </span> </div> <div - className="flex cursor-pointer items-center space-x-1 text-text-tertiary" + className="flex items-center space-x-1 cursor-pointer text-text-tertiary" onClick={showDetailModal} > <div className="text-xs uppercase">{t(`${i18nPrefix}.open`)}</div> -- Gitblit v1.8.0