diff --git a/web/src/views/SettingView.vue b/web/src/views/SettingView.vue index fe19385c..a08a4fe1 100644 --- a/web/src/views/SettingView.vue +++ b/web/src/views/SettingView.vue @@ -106,7 +106,7 @@ @click="handleChange('model_provider', 'custom'); handleChange('model_name', item.custom_id)" >
-
{{ item.name }}
+
{{ item.name }}
{ .name { color: var(--gray-1000); font-weight: bold; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + flex: 1; + margin-right: 8px; + position: relative; + + &:hover::after { + content: attr(title); + position: absolute; + left: 0; + top: 100%; + background: rgba(0, 0, 0, 0.8); + color: white; + padding: 4px 8px; + border-radius: 4px; + font-size: 12px; + white-space: nowrap; + z-index: 1000; + margin-top: 5px; + } } .action { opacity: 0; user-select: none; margin-left: auto; + flex-shrink: 0; button { padding: 4px 8px; } diff --git a/web/vite.config.js b/web/vite.config.js index 2c0b3e13..d318dcb7 100644 --- a/web/vite.config.js +++ b/web/vite.config.js @@ -14,7 +14,7 @@ export default defineConfig(({ mode }) => { server: { proxy: { '^/api': { - target: env.VITE_API_URL || 'http://localhost:5050', + target: env.VITE_API_URL || 'http://127.0.0.1:5050', changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, '') }