Skip to content

Commit

Permalink
Update display of msoMdoc attribute names to include namespace (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
vafeini authored Sep 30, 2024
1 parent 5d7fc08 commit 2b238c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class MsoMdocAttestationDecoder implements AttestationDecoder {
for (const element of namespace) {
const decodedElement = this.decodeCborData(element.value);
attributes.push({
key: decodedElement.elementIdentifier.replaceAll('_', ' '),
key: it + ":" + decodedElement.elementIdentifier,
value: this.asString(decodedElement.elementValue)
});
}
Expand Down

0 comments on commit 2b238c8

Please sign in to comment.