chore: checkpoint before DAG views UX overhaul
This commit is contained in:
parent
5695125a75
commit
a03def1ca1
125 changed files with 40711 additions and 581 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import { runBdCommand, type RunBdCommandResult } from './bridge';
|
||||
import { issuesEventBus } from './realtime';
|
||||
|
||||
export type MutationOperation = 'create' | 'update' | 'close' | 'reopen' | 'comment';
|
||||
export type MutationStatus = 'open' | 'in_progress' | 'blocked' | 'deferred' | 'closed';
|
||||
|
|
@ -298,6 +299,9 @@ export async function executeMutation(
|
|||
};
|
||||
}
|
||||
|
||||
// Emit event to notify SSE clients of the change
|
||||
issuesEventBus.emit(payload.projectRoot, undefined, 'changed');
|
||||
|
||||
return {
|
||||
ok: true,
|
||||
operation,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue