File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
thingconnect.pulse.client/src/pages Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,6 @@ export default function EndpointDetail() {
183183 const latestCheck = recent . length > 0 ? recent [ 0 ] : null ;
184184 const currentStatus = latestCheck ?. status || 'unknown' ;
185185
186- // inside EndpointDetail component (before return)
187186 const stats = [
188187 {
189188 key : 'uptime' ,
@@ -359,7 +358,9 @@ export default function EndpointDetail() {
359358 </ Box >
360359 < VStack align = 'self-start' >
361360 < Stat . Label > { stat . label } </ Stat . Label >
362- < Stat . ValueText > { stat . value } </ Stat . ValueText >
361+ < Stat . ValueText fontSize = { stat . key === 'lastCheck' ? 'sm' : undefined } >
362+ { stat . value }
363+ </ Stat . ValueText >
363364 < Stat . HelpText > { stat . help } </ Stat . HelpText >
364365 </ VStack >
365366 </ HStack >
You can’t perform that action at this time.
0 commit comments