feat: dark mode for knowledge (#15236)

This commit is contained in:
Wu Tianwei
2025-03-19 11:19:57 +08:00
committed by GitHub
parent 97eadb867c
commit 411e332f1b
72 changed files with 473 additions and 761 deletions

View File

@@ -28,7 +28,7 @@ const UrlInput: FC<Props> = ({
}, [isRunning, onRun, url])
return (
<div className='flex items-center justify-between'>
<div className='flex items-center justify-between gap-x-2'>
<Input
value={url}
onChange={handleUrlChange}
@@ -37,8 +37,8 @@ const UrlInput: FC<Props> = ({
<Button
variant='primary'
onClick={handleOnRun}
className='ml-2'
loading={isRunning}
spinnerClassName='!ml-0'
>
{!isRunning ? t(`${I18N_PREFIX}.run`) : ''}
</Button>