Skip to content
Snippets Groups Projects
Commit 4887e136 authored by felmer's avatar felmer
Browse files

SSDM-8929: bug fixed in SampleSearchCriteria.js: wrong relation type for...

SSDM-8929: bug fixed in SampleSearchCriteria.js: wrong relation type for SampleSearchCriteria. The effect of the bug is only on logging the search criteria on the server side or in error messages.
parent f0dd38c7
No related branches found
No related tags found
Loading
...@@ -77,7 +77,7 @@ define([ "require", "stjs", "as/dto/common/search/AbstractEntitySearchCriteria", ...@@ -77,7 +77,7 @@ define([ "require", "stjs", "as/dto/common/search/AbstractEntitySearchCriteria",
}); });
var SampleSearchCriteria = function() { var SampleSearchCriteria = function() {
AbstractSampleSearchCriteria.call(this, SampleSearchRelation.PARENTS); AbstractSampleSearchCriteria.call(this, SampleSearchRelation.SAMPLE);
}; };
stjs.extend(SampleSearchCriteria, AbstractSampleSearchCriteria, [ AbstractSampleSearchCriteria ], function(constructor, prototype) { stjs.extend(SampleSearchCriteria, AbstractSampleSearchCriteria, [ AbstractSampleSearchCriteria ], function(constructor, prototype) {
prototype['@type'] = 'as.dto.sample.search.SampleSearchCriteria'; prototype['@type'] = 'as.dto.sample.search.SampleSearchCriteria';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment