diff --git a/src/pages/app/edit/List.tsx b/src/pages/app/edit/List.tsx index 6bf2f02..bcd3ada 100644 --- a/src/pages/app/edit/List.tsx +++ b/src/pages/app/edit/List.tsx @@ -6,6 +6,8 @@ import { CodeOutlined, DashboardOutlined, DeleteOutlined, EditOutlined, LinkOutl import { isObjectNull } from '@/utils/is-null'; import { FileUpload } from '../modules/FileUpload'; import { useNewNavigate } from '@/modules'; +import { marked } from 'marked'; +import clsx from 'clsx'; const FormModal = () => { const [form] = Form.useForm(); const containerStore = useUserAppStore( @@ -133,6 +135,8 @@ export const List = () => {
{userAppStore.list.map((item) => { const isRunning = item.status === 'running'; + const hasDescription = !!item.description; + const content = marked.parse(item.description); return (
{}}> @@ -141,6 +145,13 @@ export const List = () => {
+
+
domain: {item.domain}
+
version: {item.version}
+
+
+
+
diff --git a/theme b/theme index 4784ac6..5e67c93 160000 --- a/theme +++ b/theme @@ -1 +1 @@ -Subproject commit 4784ac623bd05fc242d706727df31a66db44817b +Subproject commit 5e67c93b63984ff1996fb0060ff88d70123aebca