@datagrok/peptides 1.27.8 → 1.27.9

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/peptides",
3
3
  "friendlyName": "Peptides",
4
- "version": "1.27.8",
4
+ "version": "1.27.9",
5
5
  "author": {
6
6
  "name": "Davit Rizhinashvili",
7
7
  "email": "drizhinashvili@datagrok.ai"
package/src/model.ts CHANGED
@@ -208,7 +208,7 @@ export class PeptidesModel {
208
208
  updateVars.add('clusterMaxActivity');
209
209
  break;
210
210
  case 'showSequenceSpace':
211
- updateVars.add('showSequenceSpace');
211
+ updateVars.add('sequenceSpaceParams');
212
212
  break;
213
213
  case 'showLogoSummaryTable':
214
214
  updateVars.add('logoSummaryTable');
@@ -293,7 +293,6 @@ export class PeptidesModel {
293
293
  mpr.render();
294
294
  break;
295
295
  case 'sequenceSpaceParams':
296
- case 'showSequenceSpace':
297
296
  if (this.settings!.showSequenceSpace)
298
297
  this.addSequenceSpace({clusterEmbeddings: this.settings!.sequenceSpaceParams?.clusterEmbeddings});
299
298
  break;
package/src/utils/misc.ts CHANGED
@@ -213,7 +213,7 @@ export function addExpandIcon(grid: DG.Grid): void {
213
213
  pairsFullscreenDialog.add(fullscreenGrid.root);
214
214
  pairsFullscreenDialog.showModal(true);
215
215
  fullscreenGrid.invalidate();
216
- });
216
+ }, 'Full screen');
217
217
  grid.root.appendChild(fullscreenIcon);
218
218
  fullscreenIcon.style.position = 'absolute';
219
219
  fullscreenIcon.style.right = '0px';
@@ -252,7 +252,7 @@ export function addExpandIconsToGridPair(grids: DG.Grid[], name: string, onClose
252
252
  });
253
253
  //fullscreenGrid.invalidate();
254
254
  fullscreenGrids.forEach((g) => g.invalidate());
255
- });
255
+ }, 'Full screen');
256
256
  grid.root.appendChild(fullscreenIcon);
257
257
  fullscreenIcon.style.position = 'absolute';
258
258
  fullscreenIcon.style.right = '0px';