mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
Fix isCorrected
This commit is contained in:
parent
8da9f6fff4
commit
bd6dd042bd
@ -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 {
|
||||
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user