diff --git a/web/default/src/features/usage-logs/components/columns/common-logs-columns.tsx b/web/default/src/features/usage-logs/components/columns/common-logs-columns.tsx index 87a29deb..223c561d 100644 --- a/web/default/src/features/usage-logs/components/columns/common-logs-columns.tsx +++ b/web/default/src/features/usage-logs/components/columns/common-logs-columns.tsx @@ -357,7 +357,7 @@ export function useCommonLogsColumns(isAdmin: boolean): ColumnDef[] { )} {log.channel_name && ( - + {channelName} )} @@ -491,7 +491,7 @@ export function useCommonLogsColumns(isAdmin: boolean): ColumnDef[] { copyText={sensitiveVisible ? tokenName : undefined} size='sm' showDot={false} - className='border-border/60 bg-muted/30 text-foreground max-w-full overflow-hidden rounded-md border h-6 px-2 py-0.5 gap-1.5 font-mono' + className='border-border/60 bg-muted/30 text-foreground max-w-full overflow-hidden rounded-md border h-6 px-2 py-0.5 gap-1.5' /> {sensitiveVisible && tokenName.length > 16 && ( @@ -502,7 +502,7 @@ export function useCommonLogsColumns(isAdmin: boolean): ColumnDef[] { {metaParts.length > 0 && ( - + {metaParts.join(' · ')} )} @@ -598,13 +598,13 @@ export function useCommonLogsColumns(isAdmin: boolean): ColumnDef[] { /> ))} -
- +
+ {log.is_stream ? t('Stream') : t('Non-stream')} {tokensPerSecond != null && ( <> {' · '} - + {Math.round(tokensPerSecond)} {' t/s'} diff --git a/web/default/src/features/usage-logs/components/model-badge.tsx b/web/default/src/features/usage-logs/components/model-badge.tsx index efeb25e2..7d07c791 100644 --- a/web/default/src/features/usage-logs/components/model-badge.tsx +++ b/web/default/src/features/usage-logs/components/model-badge.tsx @@ -101,7 +101,7 @@ function ModelBadgeContent(props: ModelBadgeProps) { showDot={!provider} autoColor={provider ? undefined : props.modelName} className={cn( - 'border-border/60 bg-muted/30 h-auto min-h-6 px-2 py-0.5 gap-1.5 rounded-md border font-mono whitespace-normal break-all', + 'border-border/60 bg-muted/30 h-auto min-h-6 px-2 py-0.5 gap-1.5 rounded-md border whitespace-normal break-all', provider && 'text-foreground', props.className )}