mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-17 11:20:37 +09:00
4 lines
168 B
TypeScript
4 lines
168 B
TypeScript
|
|
export function shouldRenderRichSubIssuesSection(childIssuesLoading: boolean, childIssueCount: number): boolean {
|
||
|
|
return childIssuesLoading || childIssueCount > 0;
|
||
|
|
}
|