Add space between value and denomination, fixes #383

This commit is contained in:
Pieter Vander Vennet 2021-07-03 21:23:11 +02:00
parent 952e3e2bc7
commit 6ec261e516

View file

@ -151,7 +151,7 @@ export class Denomination {
if (stripped === null) {
return null;
}
return stripped + this.canonical
return stripped + " " + this.canonical.trim()
}
/**