0.1.3-rc.5.2.4

This commit is contained in:
wisdgod
2025-04-05 17:21:49 +08:00
parent f538005030
commit 5071997ffc
50 changed files with 1591 additions and 3869 deletions

View File

@@ -846,7 +846,7 @@
return;
}
const data = await makeAuthenticatedRequest('/tokens/delete', {
const data = await makeAuthenticatedRequest('/tokens/del', {
method: 'POST',
body: JSON.stringify({
tokens: [currentToken],
@@ -861,8 +861,6 @@
message = 'Token删除失败未找到该Token';
}
showGlobalMessage(message);
// 刷新日志列表
fetchLogs();
}
};
@@ -1070,7 +1068,7 @@
<td>${formatTiming(log.timing.total)}</td>
<td>${log.stream ? '是' : '否'}</td>
<td>${log.status}</td>
<td>${log.error || '-'}</td>
<td>${log.error.details || log.error || '-'}</td>
</tr>`;
}).join('');