@jbrowse/plugin-data-management 1.5.8 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-data-management",
3
- "version": "1.5.8",
3
+ "version": "1.6.2",
4
4
  "description": "JBrowse 2 linear genome view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -56,5 +56,5 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  },
59
- "gitHead": "f16afc382629a4a830f9040410a9ff1a3a328918"
59
+ "gitHead": "92455c6021abd69548496a450983d89f8837860d"
60
60
  }
@@ -112,7 +112,9 @@ const TrackAdapterSelector = observer(({ model }: { model: AddTrackModel }) => {
112
112
  helperText="Select an adapter type"
113
113
  select
114
114
  fullWidth
115
- onChange={event => model.setAdapterHint(event.target.value)}
115
+ onChange={event => {
116
+ model.setAdapterHint(event.target.value)
117
+ }}
116
118
  SelectProps={{
117
119
  // @ts-ignore
118
120
  SelectDisplayProps: { 'data-testid': 'adapterTypeSelect' },