fixes a tree display issue in transaction details view

This commit is contained in:
2023-02-24 11:28:40 +01:00
parent 2885cb9602
commit 85d9c92f21
2 changed files with 17 additions and 9 deletions

View File

@@ -81,4 +81,8 @@ public class TxAttribute implements ITxAttribute, Serializable {
return value;
}
@Override
public String toString() {
return "FtxAttr: " + attributeType.toString() + "=" + value;
}
}