Fix financial taxonomy snapshot normalization
This commit is contained in:
@@ -99,8 +99,8 @@ function searchTextForSurface(row: SurfaceFinancialRow) {
|
||||
return [
|
||||
row.label,
|
||||
row.key,
|
||||
...row.sourceConcepts,
|
||||
...row.sourceRowKeys,
|
||||
...(row.sourceConcepts ?? []),
|
||||
...(row.sourceRowKeys ?? []),
|
||||
...(row.warningCodes ?? [])
|
||||
]
|
||||
.join(' ')
|
||||
@@ -115,7 +115,7 @@ function searchTextForDetail(row: DetailFinancialRow) {
|
||||
row.conceptKey,
|
||||
row.qname,
|
||||
row.localName,
|
||||
...row.dimensionsSummary
|
||||
...(row.dimensionsSummary ?? [])
|
||||
]
|
||||
.join(' ')
|
||||
.toLowerCase();
|
||||
|
||||
Reference in New Issue
Block a user