AGVManager에 pool적용. MQTTPipeLineInfo, updatedDataOnly=true 일때 값 검증해야 함

This commit is contained in:
logonkhi
2025-06-25 19:44:34 +09:00
parent 784238efbf
commit aa9caab761
7 changed files with 509 additions and 57 deletions

View File

@@ -154,7 +154,7 @@ namespace UVC.UI.Info
foreach (var kvp in information)
{
// <indent> 태그를 사용하여 줄바꿈 시에도 정렬이 유지되도록 합니다.
combinedString += $"{kvp.Key}:<pos=40%><indent=40%>{kvp.Value ?? "null"}</indent>\n";
combinedString += $"{kvp.Key}<pos=40%><indent=40%>{kvp.Value ?? "null"}</indent>\n";
}
combinedString = combinedString.TrimEnd('\n'); // 마지막 줄바꿈 제거
text.text = combinedString;