Skip to content

Commit 1beaa67

Browse files
committed
Increase width of field label
1 parent 4818e5a commit 1beaa67

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

SequenceAnalysis/resources/web/SequenceAnalysis/panel/BaseSequencePanel.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
247247
bodyStyle: 'padding-top: 10px;padding-left: 5px;',
248248
items: [{
249249
xtype: 'labkey-combo',
250-
width: 450,
250+
width: 600,
251251
fieldLabel: 'Select Run',
252252
editable: true,
253253
forceSelection: true,
@@ -268,11 +268,14 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
268268
afterrender: function (field) {
269269
Ext4.defer(field.focus, 200, field);
270270
}
271-
}
271+
},
272+
labelWidth: 200
272273
},{
273274
xtype: 'checkbox',
274275
itemId: 'useReadsetContainer',
275-
fieldLabel: 'Submit Jobs to Same Folder/Workbook as Readset'
276+
helpPopup: 'By default, the pipelines jobs and their outputs will be created in the workbook you selected. However, in certain cases, such as bulk submission of many jobs, it might be preferable to submit each job to the source folder/workbook for each input. Checking this box will enable this.',
277+
fieldLabel: 'Submit Jobs to Same Folder/Workbook as Readset',
278+
labelWidth: 200
276279
}]
277280
}],
278281
buttons: [{

SequenceAnalysis/resources/web/SequenceAnalysis/panel/SequenceAnalysisPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Ext4.define('SequenceAnalysis.panel.SequenceAnalysisPanel', {
319319
xtype: 'checkbox'
320320
}, this.getSaveTemplateCfg(),{
321321
fieldLabel: 'Submit Jobs To Same Folder/Workbook As Readset?',
322-
helpPopup: 'If checked, each alignment job will be submitted to the container/workbook of the parent readset, rather than this container',
322+
helpPopup: 'By default, the pipelines jobs and their outputs will be created in the workbook you selected. However, in certain cases, such as bulk submission of many jobs, it might be preferable to submit each job to the source folder/workbook for each input. Checking this box will enable this.',
323323
name: 'submitJobToReadsetContainer',
324324
inputValue: true,
325325
uncheckedValue: false,

0 commit comments

Comments
 (0)