@datagrok/hit-triage 1.7.2 → 1.7.3
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/CHANGELOG.md +4 -0
- package/css/hit-triage.css +2 -1
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +2 -2
- package/src/app/dialogs/functions-dialog.ts +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datagrok/hit-triage",
|
|
3
3
|
"friendlyName": "Hit Triage",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Davit Rizhinashvili",
|
|
7
7
|
"email": "drizhinashvili@datagrok.ai"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@datagrok-libraries/compute-utils": "^1.39.0",
|
|
20
|
-
"@datagrok-libraries/utils": "^4.
|
|
20
|
+
"@datagrok-libraries/utils": "^4.5.7",
|
|
21
21
|
"cash-dom": "^8.1.5",
|
|
22
22
|
"css-loader": "^6.5.1",
|
|
23
23
|
"datagrok-api": "^1.25.0",
|
|
@@ -75,6 +75,7 @@ export async function chemFunctionsDialog(app: HitAppBase<any>,
|
|
|
75
75
|
}
|
|
76
76
|
return ui.divText('Failed to load descriptors');
|
|
77
77
|
})
|
|
78
|
+
descriptorsGroupHost.classList.add('oy-scroll');
|
|
78
79
|
|
|
79
80
|
const descriptorsName = 'Descriptors';
|
|
80
81
|
const funcNamesMap: {[key: string]: string} = {[descriptorsName]: descriptorsName};
|