Skip to content

Commit

Permalink
[skip ci] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed May 27, 2024
1 parent 4e151d5 commit fa34927
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const AddFiltersDialog = observer(function ({
<div>
Add filters, in jexl format, one per line, starting with the string
jexl:. Example: <pre>jexl:get(feature,'name')=='BRCA1'</pre> to only
show the feature where the name attrivute is "BRCA1" in view
show the feature where the name attribute is "BRCA1" in view
</div>

{error ? <p className={classes.error}>{`${error}`}</p> : null}
Expand All @@ -85,7 +85,7 @@ const AddFiltersDialog = observer(function ({
color="primary"
type="submit"
autoFocus
disabled={!!error || !data.trim()}
disabled={!!error}
onClick={() => {
model.setJexlFilters(data.split('\n'))
handleClose()
Expand Down

0 comments on commit fa34927

Please sign in to comment.