10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-10-02 22:40:59 +02: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
}
else if (a.isTBE && b.isTBE) {
if (!a.isCorrected && b.isCorrected) {
if (!a.isCorrectedTBE && b.isCorrectedTBE) {
return -1
}
else {

View File

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