10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-12-25 13:53:48 +01:00

Fix isCorrected

This commit is contained in:
Mickaël Véril 2020-01-14 18:03:17 +01:00
parent 8da9f6fff4
commit bd6dd042bd
2 changed files with 3 additions and 3 deletions

View File

@ -324,7 +324,7 @@ draft: false
return -1 return -1
} }
else if (a.isTBE && b.isTBE) { else if (a.isTBE && b.isTBE) {
if (!a.isCorrected && b.isCorrected) { if (!a.isCorrectedTBE && b.isCorrectedTBE) {
return -1 return -1
} }
else { else {

View File

@ -79,8 +79,8 @@ class method {
get isTBE() { get isTBE() {
return /^TBE/.test(this.name) return /^TBE/.test(this.name)
} }
get isCorrected() { get isCorrectedTBE() {
return /corr$/.test(this.name) return this.name="TBE"
} }
} }