Skip to content

Commit

Permalink
TAB-480 error in command AddCommentCommand - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
evandor committed Jan 6, 2024
1 parent cb20e60 commit 0ee7b1e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/services/TabsetService2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -673,8 +673,9 @@ export function useTabsetService() {
}
}
for (const f of folders) {
return findTabInFolder(f.folders, tabId)
}
if (f.folders) {
return findTabInFolder(f.folders, tabId)
} }
return undefined
}

Expand Down

0 comments on commit 0ee7b1e

Please sign in to comment.