Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class AdvancedSettings extends React.PureComponent<AdvancedSettingsProps,
showDefaultValues = () => {
const { field, showDefaultValueSettings } = this.props;

// GitHub Issue #783: we don't yet support default values in the App
// GitHub Issue #298: we don't yet support default values in the App
if (isApp()) return false;

// some domains just don't support default values
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ describe('resolveBaseProperties', () => {
expect(field.rangeURI).toBe(SAMPLE_TYPE.rangeURI);
expect(field.required).toBe(true);

// GitHub Issue 787
// GitHub Issue #656
field = DomainField.resolveBaseProperties({ name: 'SampleId', required: false });
expect(field.dataType).toBe(SAMPLE_TYPE);
expect(field.conceptURI).toBe(SAMPLE_TYPE.conceptURI);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ export class DomainField
field.dataType = SAMPLE_TYPE;
field.conceptURI = SAMPLE_TYPE.conceptURI;
field.rangeURI = SAMPLE_TYPE.rangeURI;
field.required = !!(raw.required ?? true); // GitHub Issue 787
field.required = !!(raw.required ?? true); // GitHub Issue #656
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export function createSessionAssayRunSummaryQuery(sampleIds: number[]): Promise<
assayRunsQuery = 'AssayRunsPerSampleChildFolder';
}

// GitHub Issue 748: need to account for the case with no sampleIds
// GitHub Issue #643: need to account for the case with no sampleIds
let whereClause = 'WHERE RowId IN (' + sampleIds.join(',') + ')\n';
if (sampleIds.length === 0) {
whereClause = 'WHERE 1 = 0\n'; // add where clause that will always result in zero rows
Expand Down
Loading