Merge branch 'dev' into docs-wall-of-love

This commit is contained in:
Henry 2024-02-27 23:42:08 +09:00 committed by GitHub
commit e628993ce2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -140,7 +140,7 @@ const SystemMonitor = () => {
{gpus.length > 0 && ( {gpus.length > 0 && (
<div className="mb-4 border-b border-border pb-4 last:border-none"> <div className="mb-4 border-b border-border pb-4 last:border-none">
{gpus.map((gpu, index) => ( {gpus.map((gpu, index) => (
<div key={index} className="mt-4 flex flex-col gap-2"> <div key={index} className="mt-4 flex flex-col gap-x-2">
<div className="flex w-full items-start justify-between"> <div className="flex w-full items-start justify-between">
<span className="line-clamp-1 w-1/2 font-bold"> <span className="line-clamp-1 w-1/2 font-bold">
{gpu.name} {gpu.name}

View File

@ -13,7 +13,7 @@ import {
} from '@janhq/uikit' } from '@janhq/uikit'
import { useAtomValue, useSetAtom } from 'jotai' import { useAtomValue, useSetAtom } from 'jotai'
import { Plus, SearchIcon } from 'lucide-react' import { UploadIcon, SearchIcon } from 'lucide-react'
import { FeatureToggleContext } from '@/context/FeatureToggle' import { FeatureToggleContext } from '@/context/FeatureToggle'
@ -96,12 +96,12 @@ const ExploreModelsScreen = () => {
/> />
</div> </div>
<Button <Button
themes={'primary'} themes="outline"
className="space-x-2" className="gap-2 bg-white"
onClick={onImportModelClick} onClick={onImportModelClick}
> >
<Plus className="h-3 w-3" /> <UploadIcon size={16} />
<p>Import Model</p> Import Model
</Button> </Button>
</div> </div>
{experimentalFeature && ( {experimentalFeature && (