@datagrok/sequence-translator 1.8.0 → 1.9.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@datagrok/sequence-translator",
3
3
  "friendlyName": "Sequence Translator",
4
- "version": "1.8.0",
4
+ "version": "1.9.0",
5
5
  "author": {
6
6
  "name": "Leonid Stolbov",
7
7
  "email": "lstolbov@datagrok.ai"
@@ -25,10 +25,10 @@
25
25
  "@datagrok-libraries/bio": "^5.50.0",
26
26
  "@datagrok-libraries/chem-meta": "^1.2.8",
27
27
  "@datagrok-libraries/tutorials": "^1.4.3",
28
- "@datagrok-libraries/utils": "^4.3.7",
28
+ "@datagrok-libraries/utils": "^4.5.0",
29
29
  "@types/react": "^18.0.15",
30
30
  "cash-dom": "^8.1.0",
31
- "datagrok-api": "^1.24.0",
31
+ "datagrok-api": "^1.25.0",
32
32
  "lodash": "^4.17.21",
33
33
  "object-hash": "^3.0.0",
34
34
  "openchemlib": "6.0.1",
@@ -83,7 +83,7 @@
83
83
  "build-all": "npm --prefix ./../../libraries/chem-meta run build && npm --prefix ./../../js-api run build && npm --prefix ./../../libraries/utils run build && npm --prefix ./../../libraries/bio run build && npm --prefix ./../../libraries/tutorials run build && npm run build"
84
84
  },
85
85
  "canEdit": [
86
- "Developers"
86
+ "Administrators"
87
87
  ],
88
88
  "canView": [
89
89
  "All users"
@@ -471,7 +471,7 @@ class ColumnInputsManager {
471
471
  private selectColumnIfTableNotNull(
472
472
  table: DG.DataFrame | null, columnName: string, columnLabel: REQUIRED_COLUMN_LABEL
473
473
  ): void {
474
- if (table !== null) {
474
+ if (table !== null && columnName) {
475
475
  const selectedColumn = table.getCol(columnName);
476
476
  this.eventBus.selectColumn(columnLabel, selectedColumn);
477
477
  }