Skip to content

Commit 85b0700

Browse files
committed
Bugfix to LibraryExportPanel
1 parent 1511c68 commit 85b0700

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/resources/web/singlecell/panel/LibraryExportPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ Ext4.define('SingleCell.panel.LibraryExportPanel', {
341341
disabled: true,
342342
handler: function (btn) {
343343
var instrument = btn.up('singlecell-libraryexportpanel').down('#instrument').getValue();
344-
var plateId = btn.up('singlecell-libraryexportpanel').down('#sourcePlates').getValue();
344+
var plateId = btn.up('singlecell-libraryexportpanel').down('#sourcePlates') ? btn.up('singlecell-libraryexportpanel').down('#sourcePlates').getValue() : 'Libraries';
345345
var delim = 'TAB';
346346
var extension = 'txt';
347347
var split = '\t';

0 commit comments

Comments
 (0)