Disable boundary chronology check because of null checking miss and string comparison

This commit is contained in:
2019-01-09 14:19:04 -05:00
parent 04142b41fd
commit 6bd2046d1c
@@ -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 {