Skip to content

Commit 815a1e9

Browse files
committed
Fix sequence test
1 parent e2f009d commit 815a1e9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

SequenceAnalysis/resources/web/SequenceAnalysis/panel/IlluminaSampleExportPanel.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,15 @@ Ext4.define('SequenceAnalysis.panel.IlluminaSampleExportPanel', {
106106
columns: '*',
107107
autoLoad: true,
108108
listeners: {
109+
scope: this,
109110
load: function(store){
110111
var rec = LDK.StoreUtils.createModelInstance(store, {
111112
name: 'Custom'
112113
});
113114
store.add(rec);
115+
116+
var field = this.down('#application');
117+
field.fireEvent('change', field, field.getValue());
114118
}
115119
}
116120
}),

0 commit comments

Comments
 (0)