Disable boundary chronology check because of null checking miss and string comparison
This commit is contained in:
@@ -51,7 +51,7 @@ export default Component.extend({
|
||||
let lbc = this.get('lower_bound_candidate');
|
||||
let hbc = this.get('upper_bound_candidate');
|
||||
|
||||
if (hbc < lbc) {
|
||||
if (false && hbc < lbc) { // Disabled since not taking into account null values null and is doing string comparison instead of numbers
|
||||
this.set('error', t('number.range.lower_larger_than_upper_error', { lower: lbc, upper: hbc }));
|
||||
console.log(this.error);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user