Fix: Display correct hardware info in NodeInfo

The hardware information displayed in the NodeInfo view was incorrect. This commit fixes the issue by using the correct node
 information to retrieve the hardware model string.
This commit is contained in:
James Rich 2024-07-02 16:37:12 -05:00 committed by Andre K
parent 6e370a9919
commit 183b337d61

View file

@ -157,7 +157,7 @@ fun NodeInfo(
textDecoration = TextDecoration.LineThrough.takeIf { isIgnored },
)
val hwInfoString = thisNodeInfo?.user?.hwModelString
val hwInfoString = thatNodeInfo.user?.hwModelString
if (hwInfoString != null){
Text(
modifier = Modifier.constrainAs(hw) {