diff --git a/src/views/ConsensusStates.vue b/src/views/ConsensusStates.vue index e893a077..46dba7ed 100644 --- a/src/views/ConsensusStates.vue +++ b/src/views/ConsensusStates.vue @@ -273,8 +273,9 @@ export default { return i } const txt = text.substring(text.indexOf(':') + 1, text.indexOf(' ')) + const sig = text.split(' ') const val = this.vals.find(x => x.hex.startsWith(txt)) - return val?.description?.moniker || txt + return `${val?.description?.moniker || txt} - ${sig[3]}` }, },