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/create/website/base/url-input.tsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/datasets/create/website/base/url-input.tsx b/app/components/datasets/create/website/base/url-input.tsx index b7dc9bf..e6b0475 100644 --- a/app/components/datasets/create/website/base/url-input.tsx +++ b/app/components/datasets/create/website/base/url-input.tsx @@ -28,7 +28,7 @@ }, [isRunning, onRun, url]) return ( - <div className='flex items-center justify-between gap-x-2'> + <div className='flex items-center justify-between'> <Input value={url} onChange={handleUrlChange} @@ -37,8 +37,8 @@ <Button variant='primary' onClick={handleOnRun} + className='ml-2' loading={isRunning} - spinnerClassName='!ml-0' > {!isRunning ? t(`${I18N_PREFIX}.run`) : ''} </Button> -- Gitblit v1.8.0