Skip to content

Commit

Permalink
[FIX #30] Address can be an int (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
mixman68 authored Apr 16, 2024
1 parent ff11a42 commit 69c2d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/converter.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export class ConverterService {
private mapAliasEntity(a: pfAlias) {
const modifiedAddress =
a?.address != undefined
? a?.address.replaceAll(' ', '\n')
? a?.address.toString().replaceAll(' ', '\n')
: '';

const aElement = {
Expand Down

0 comments on commit 69c2d39

Please sign in to comment.