@@ -212,19 +212,19 @@ export function OutboundLatencyTestDialog({ open, onOpenChange, scope, coreId }:
212212
213213 { ! isSingleMode ? (
214214 < div className = "grid overflow-hidden rounded-md border sm:grid-cols-3" >
215- < div className = "border-b p-3 sm:border-r sm:border-b-0" >
215+ < div className = "border-b p-3 sm:border-e sm:border-b-0" >
216216 < div className = "text-muted-foreground text-[11px] font-medium tracking-wide uppercase" > { t ( 'coreEditor.outbound.latency.total' , { defaultValue : 'Total' } ) } </ div >
217217 < div className = "mt-1 text-lg font-semibold tabular-nums" > { sortedLatencies . length } </ div >
218218 </ div >
219- < div className = "border-b p-3 sm:border-r sm:border-b-0" >
219+ < div className = "border-b p-3 sm:border-e sm:border-b-0" >
220220 < div className = "text-muted-foreground text-[11px] font-medium tracking-wide uppercase" > { t ( 'coreEditor.outbound.latency.alive' , { defaultValue : 'Alive' } ) } </ div >
221221 < div className = "mt-1 text-lg font-semibold tabular-nums" >
222222 { aliveCount } /{ sortedLatencies . length || 0 }
223223 </ div >
224224 </ div >
225225 < div className = "p-3" >
226226 < div className = "text-muted-foreground text-[11px] font-medium tracking-wide uppercase" > { t ( 'coreEditor.outbound.latency.average' , { defaultValue : 'Average delay' } ) } </ div >
227- < div className = "mt-1 text-lg font-semibold tabular-nums" > { averageDelay === null ? '-' : `${ averageDelay } ms` } </ div >
227+ < div dir = "ltr" className = "mt-1 text-lg font-semibold tabular-nums" > { averageDelay === null ? '-' : `${ averageDelay } ms` } </ div >
228228 </ div >
229229 </ div >
230230 ) : null }
@@ -265,7 +265,7 @@ export function OutboundLatencyTestDialog({ open, onOpenChange, scope, coreId }:
265265 </ div >
266266 ) : null }
267267 </ div >
268- < Badge variant = "outline" className = { cn ( 'w-fit shrink-0 font-mono text-xs' , getLatencyClassName ( health ) ) } >
268+ < Badge dir = "ltr" variant = "outline" className = { cn ( 'w-fit shrink-0 font-mono text-xs' , getLatencyClassName ( health ) ) } >
269269 { ! item . alive || item . delay < 0 ? t ( 'coreEditor.outbound.latency.unreachable' , { defaultValue : 'Unreachable' } ) : `${ item . delay } ms` }
270270 </ Badge >
271271 </ div >
0 commit comments