diff --git a/src/components/ConfigSelector.tsx b/src/components/ConfigSelector.tsx index e381983..833f6e8 100644 --- a/src/components/ConfigSelector.tsx +++ b/src/components/ConfigSelector.tsx @@ -1,7 +1,7 @@ "use client"; import { useState, useCallback } from "react"; -import { Select, Button, Space, Flex, App } from "antd"; +import { Select, Button, Space, Flex, Typography, App } from "antd"; import { EditOutlined, PlusOutlined } from "@ant-design/icons"; import { ConfigModal } from "./ConfigModal"; import { getConfig } from "@/services/config"; @@ -107,7 +107,12 @@ export function ConfigSelector({ onChange={handleChange} options={configs.map((c) => ({ value: c.file, - label: c.name, + label: ( + + {c.name} + {c.file} + + ), }))} />