Skip to content

Commit

Permalink
Fix rebuttals
Browse files Browse the repository at this point in the history
  • Loading branch information
RikudouSage committed Jan 6, 2024
1 parent 6604c0a commit 108006c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/response/normalized-instance-detail.response.ts
Expand Up @@ -66,7 +66,7 @@ export class NormalizedInstanceDetailResponse {
detail.sysadmins,
detail.moderators,
detail.state,
detail.rebuttal === null || !detail.rebuttal.length ? null : detail.rebuttal.join(', '),
detail.rebuttal === undefined || detail.rebuttal === null || !detail.rebuttal.length ? null : detail.rebuttal.join(', '),
detail.guarantor,
);
}
Expand Down

0 comments on commit 108006c

Please sign in to comment.