Skip to content

Commit

Permalink
Place strategic SSE log
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbroman committed Aug 3, 2023
1 parent 94ee76f commit 6964d0b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/src/os/services/ship/notes/notes.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,10 @@ export class NotesService extends AbstractService<NotesService_IPCUpdate> {
updates.forEach((update) => {
if (!this.notesDB) return;

if (update.type === 'notes' || update.row?.type === 'notes') {
console.log('notes update', update.type, update.row?.type);
}

if (update.change === 'add-row') {
if (update.row?.type === 'notes') {
const rowData = update.row.data;
Expand Down

0 comments on commit 6964d0b

Please sign in to comment.