Skip to content

Commit

Permalink
Update for compatibility with latest JBrowse
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettjstevens committed Nov 19, 2024
1 parent 033fcd0 commit 962c313
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable @typescript-eslint/use-unknown-in-catch-callback-variable */
import { isAbortException } from '@jbrowse/core/util'
import { isAbortException } from '@jbrowse/core/util/aborting'

Check warning on line 2 in packages/jbrowse-plugin-apollo/src/ApolloInternetAccount/components/AuthTypeSelector.tsx

View check run for this annotation

Codecov / codecov/patch

packages/jbrowse-plugin-apollo/src/ApolloInternetAccount/components/AuthTypeSelector.tsx#L2

Added line #L2 was not covered by tests
import {
Button,
DialogActions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint-disable @typescript-eslint/no-unsafe-return */
// jsonpath triggers this rule for some reason. import { query } from 'jsonpath' does not work

import { checkAbortSignal } from '@jbrowse/core/util'
import { checkAbortSignal } from '@jbrowse/core/util/aborting'
import jsonpath from 'jsonpath'

import { stopwords } from './fulltext-stopwords'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* eslint-disable @typescript-eslint/no-unnecessary-condition */

import { AbstractSessionModel, isAbortException } from '@jbrowse/core/util'
import { AbstractSessionModel } from '@jbrowse/core/util'
import { isAbortException } from '@jbrowse/core/util/aborting'

Check warning on line 4 in packages/jbrowse-plugin-apollo/src/components/OntologyTermAutocomplete.tsx

View check run for this annotation

Codecov / codecov/patch

packages/jbrowse-plugin-apollo/src/components/OntologyTermAutocomplete.tsx#L4

Added line #L4 was not covered by tests
import {
Autocomplete,
AutocompleteRenderInputParams,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/unbound-method */
/* eslint-disable @typescript-eslint/use-unknown-in-catch-callback-variable */
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
import { isAbortException } from '@jbrowse/core/util'
import { isAbortException } from '@jbrowse/core/util/aborting'

Check warning on line 4 in packages/jbrowse-plugin-apollo/src/components/OntologyTermMultiSelect.tsx

View check run for this annotation

Codecov / codecov/patch

packages/jbrowse-plugin-apollo/src/components/OntologyTermMultiSelect.tsx#L4

Added line #L4 was not covered by tests
import {
Autocomplete,
AutocompleteRenderGetTagProps,
Expand Down

0 comments on commit 962c313

Please sign in to comment.