Skip to content

Commit

Permalink
feat: make sure myRecord search has no owner tag
Browse files Browse the repository at this point in the history
  • Loading branch information
cmoinier committed Dec 12, 2024
1 parent 66bc5f3 commit aedd749
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export class FuzzySearchComponent implements OnInit {
if (this.inputSubmitted.observers.length > 0) {
this.inputSubmitted.emit(any)
} else {
this.searchService.updateFilters({ any })
this.searchFacade.searchId === 'myRecords'
? this.searchService.setFilters({ any })
: this.searchService.updateFilters({ any })
}
}

Expand Down

0 comments on commit aedd749

Please sign in to comment.