protocol-proxy 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/app.js +1 -1
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -137,7 +137,7 @@ function renderProviderOptions() {
|
|
|
137
137
|
container.innerHTML = providers.map(p => `
|
|
138
138
|
<div class="model-option${p.url === currentUrl ? ' selected' : ''}" data-url="${escapeHtml(p.url)}">
|
|
139
139
|
<span class="model-option-name">${escapeHtml(p.name)}</span>
|
|
140
|
-
|
|
140
|
+
${p.name !== p.url ? `<span style="color:#64748b;font-size:12px;margin-left:4px">${escapeHtml(p.url)}</span>` : ''}
|
|
141
141
|
<button type="button" class="model-option-delete" data-delete-url="${escapeHtml(p.url)}" title="删除此供应商">×</button>
|
|
142
142
|
</div>
|
|
143
143
|
`).join('');
|