feat: 添加环境检查组件,增强数据集设置页面功能

This commit is contained in:
Vixalie
2026-03-29 08:31:37 +08:00
parent d5c1d2bdc2
commit cfdc05d9dd
2 changed files with 3 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import { invoke } from '@tauri-apps/api/core';
import { onDestroy } from 'svelte';
import { type Unsubscriber } from 'svelte/store';
import DatasetInfoForm from './DatasetInfoForm.svelte';
import ModelCheckList from './ModelCheckList.svelte';
let unsubscribeMeta: Unsubscriber | null = null;
@@ -34,4 +35,5 @@ onDestroy(() => {
<DatasetInfoForm />
<h2>Environment Check</h2>
<hr class="border-zinc-500" />
<ModelCheckList />
</main>

View File

@@ -0,0 +1 @@
<div class="min-h-[4em] px-4 py-2 shrink-0 flex flex-row gap-3"></div>