function computeValue()

in web/rv-reviewer.ts [61:69]


function computeValue(account: AccountInfo): string | undefined {
  if (account.username) {
    return account.username;
  }
  if (account.email) {
    return account.email;
  }
  return String(account._account_id);
}