Skip to content

Commit

Permalink
Bugfix to 10x setting panel when values are null
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Jan 31, 2024
1 parent abaee3d commit 8c7216b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ Ext4.define('SingleCell.panel.TenxSettingsPanel', {
fieldLabel: 'Require Assay Type',
labelWidth: 300,
itemId: 'requireAssayType',
checked: !!JSON.parse(configDefaults.requireAssayType)
checked: !!JSON.parse(configDefaults.requireAssayType ?? false)
},{
xtype: 'checkbox',
fieldLabel: 'Combine Hashing and Cite-Seq',
labelWidth: 300, itemId: 'combineHashingCite',
checked: !!JSON.parse(configDefaults.combineHashingCite)
checked: !!JSON.parse(configDefaults.combineHashingCite ?? false)
}];

this.add(items);
Expand Down

0 comments on commit 8c7216b

Please sign in to comment.