diff --git a/web/src/hooks/usage-logs/useUsageLogsData.jsx b/web/src/hooks/usage-logs/useUsageLogsData.jsx index f2bc7988c..11959d51d 100644 --- a/web/src/hooks/usage-logs/useUsageLogsData.jsx +++ b/web/src/hooks/usage-logs/useUsageLogsData.jsx @@ -313,7 +313,7 @@ export const useLogsData = () => { if (chain.length <= 1) { return t('原生格式'); } - return chain.join(' -> '); + return `${t('转换')} ${chain.join(' -> ')}`; }; let expandDatesLocal = {}; @@ -486,6 +486,12 @@ export const useLogsData = () => { }); } } + if (other?.request_path) { + expandDataLocal.push({ + key: t('请求路径'), + value: other.request_path, + }); + } if (isAdminUser) { expandDataLocal.push({ key: t('请求转换'),