Skip to content

Commit a94a467

Browse files
committed
Bug fix: fixed missing or in guessCenterColumnsByName
1 parent 4e1babb commit a94a467

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firefly/js/voAnalyzer/VoTableRecognizer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export class VoTableRecognizer {
409409

410410
const c = getColumn(this.tableModel, 'coord_obs');
411411
if (acceptArrayCol && c?.arraySize &&
412-
(c?.type === 'double' || c?.type === 'float')
412+
(c?.type === 'double' || c?.type === 'float') ||
413413
(c?.utype?.toLowerCase().includes(SSA_COV_UTYPE) || c?.UCD?.toLowerCase().includes(POS_EQ_UCD) ) ) {
414414
return this.setCenterColumnsInfo([c, c]);
415415
}

0 commit comments

Comments
 (0)