Skip to content

Commit

Permalink
Fixed survey RDB data table; date_created not populated (#3627)
Browse files Browse the repository at this point in the history
Co-authored-by: Stefano Ricci <SteRiccio@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 29, 2024
1 parent 00b7ed4 commit f0ffda6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/model/db/tables/dataNodeDef/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default class TableDataNodeDef extends TableSurveyRdb {
getColumnNames = ({ includeAnalysis = true } = {}) => {
const { nodeDef } = this
const nodeDefsForColumns = this.getNodeDefsForColumns({ includeAnalysis })
const names = [columnSet.uuid, columnSet.parentUuid]
const names = [columnSet.uuid, columnSet.parentUuid, columnSet.dateCreated, columnSet.dateModified]
if (NodeDef.isRoot(nodeDef)) {
names.push(...rootDefColumnNames)
}
Expand Down

0 comments on commit f0ffda6

Please sign in to comment.