chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -35,7 +35,7 @@ export const useTrace = () => {
const fetch = useMemoizedFn(async (logId: string) => {
setLoading(true);
/** 查询日志时,开始结束时间必传,由于用户可查范围为 7 天内,所以直接伪造 7 天时间间隔即可 */
/** When querying the log, the start and end time must be passed. Since the user can check the range within 7 days, he can directly fake the 7-day time interval. */
const now = dayjs().endOf('day').valueOf();
const end = dayjs()
.subtract(MAX_TRACE_TIME, 'day')

View File

@@ -80,9 +80,9 @@ export const useOptions = (workflowId: string) => {
next.unshift(first);
}
}
// eslint-disable-next-line @coze-arch/no-empty-catch -- 无需报错
// eslint-disable-next-line @coze-arch/no-empty-catch -- no error required
} catch {
// 无需报错
// No error required
}
}
next.forEach(s => {
@@ -91,7 +91,7 @@ export const useOptions = (workflowId: string) => {
}
});
setOptions(next);
// 如果没有初始化,就初始化一次
// If it is not initialized, it is initialized once
if (!ready && !span && maybeInitialSpan) {
patch({ span: maybeInitialSpan });
}
@@ -103,7 +103,7 @@ export const useOptions = (workflowId: string) => {
const handleDateChange = useCallback(
(next: [Date, Date]) => {
const [start, end] = next;
// 时间选择器选择的日期是当天 0 点,需要转化为当天 11 点 59 分 59 秒
// The date selected by the time selector is 0:00 on the day, which needs to be converted to 11:59:59 on the day.
setDate([start, dayjs(end).endOf('day').toDate()] as [Date, Date]);
},
[setDate],