feat(bb-ui2): Social and Swarm views with detail panels integrated
This commit is contained in:
parent
976fd0c361
commit
8dd2d01686
11 changed files with 622 additions and 64 deletions
|
|
@ -52,12 +52,14 @@ export async function readIssuesForScope(options: {
|
|||
selected: ProjectScopeOption;
|
||||
scopeOptions: ProjectScopeOption[];
|
||||
preferBd?: boolean;
|
||||
skipAgentFilter?: boolean;
|
||||
}): Promise<BeadIssueWithProject[]> {
|
||||
if (options.mode === 'single') {
|
||||
return readIssuesFromDisk({
|
||||
projectRoot: options.selected.root,
|
||||
projectSource: options.selected.source,
|
||||
preferBd: options.preferBd,
|
||||
skipAgentFilter: options.skipAgentFilter,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -67,6 +69,7 @@ export async function readIssuesForScope(options: {
|
|||
projectRoot: project.root,
|
||||
projectSource: project.source,
|
||||
preferBd: options.preferBd,
|
||||
skipAgentFilter: options.skipAgentFilter,
|
||||
});
|
||||
return scopeIssuesForProject(project, issues);
|
||||
}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue