Skip to content

Commit

Permalink
fixed DeepScan issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SteRiccio committed Oct 18, 2024
1 parent f21e233 commit 5a858f1
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import * as Node from '@core/record/node'

import * as NodeRepository from '@server/modules/record/repository/nodeRepository'

import * as DataTable from '../schemaRdb/dataTable'

const getSelectQuery = ({ surveyId, nodeDef, nodeDefContext, nodeDefAncestorMultipleEntity, nodeDefColumnsUuids }) => {
const getNodeSelectQuery = (ancestorDef) =>
NodeRepository.getNodeSelectQuery({ surveyId, includeRefData: true, includeRecordInfo: true, ancestorDef })
Expand Down Expand Up @@ -100,7 +98,7 @@ export const populateTable = async ({ survey, nodeDef, stopIfFunction = null },
const tableDef = new TableDataNodeDef(survey, nodeDef)

const nodesRowValuesByColumnName = nodes.map((nodeRow) =>
DataTable.getRowValuesByColumnName({ survey, nodeDef, nodeRow, nodeDefColumns })
tableDef.getRowValuesByColumnName({ nodeRow, nodeDefColumns })
)

// 4. insert node values
Expand Down

0 comments on commit 5a858f1

Please sign in to comment.