Apply 1 suggestion(s) to 1 file(s)

This commit is contained in:
Justin 2022-01-27 19:56:16 +00:00 committed by Alex Gleason
parent f826d620b4
commit f42754ad58
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export const acctFull = (account: ImmutableMap<string, any>): string => (
account.get('fqn') || guessFqn(account) account.get('fqn') || guessFqn(account)
); );
export const getAcct = (account: ImmutableMap<string, any>, displayFqn: boolean) :string => ( export const getAcct = (account: ImmutableMap<string, any>, displayFqn: boolean): string => (
displayFqn === true ? acctFull(account) : account.get('acct') displayFqn === true ? acctFull(account) : account.get('acct')
); );