@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/dist/plugin-data-management.cjs.development.js +8 -8
- package/dist/plugin-data-management.cjs.development.js.map +1 -1
- package/dist/plugin-data-management.cjs.production.min.js +1 -1
- package/dist/plugin-data-management.cjs.production.min.js.map +1 -1
- package/dist/plugin-data-management.esm.js +8 -8
- package/dist/plugin-data-management.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/AddTrackWidget/components/ConfirmTrack.tsx +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-data-management",
|
|
3
|
-
"version": "1.
|
|
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": "
|
|
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 =>
|
|
115
|
+
onChange={event => {
|
|
116
|
+
model.setAdapterHint(event.target.value)
|
|
117
|
+
}}
|
|
116
118
|
SelectProps={{
|
|
117
119
|
// @ts-ignore
|
|
118
120
|
SelectDisplayProps: { 'data-testid': 'adapterTypeSelect' },
|