Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Dykhta <[email protected]>
  • Loading branch information
igorDykhta committed Jan 9, 2025
1 parent 747d1b1 commit 0926e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schemas/src/dataset-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class DatasetSchema extends Schema {
data: {fields: updatedFields, rows: dataset.allData},
info: pick(dataset, ['id', 'label', 'color', 'type']),
...(dataset.metadata ? {metadata: dataset.metadata} : {}),
disableDataOperation: dataset.disableDataOperation
...(dataset.disableDataOperation ? {disableDataOperation: dataset.disableDataOperation} : {})
};
}
}
Expand Down

0 comments on commit 0926e24

Please sign in to comment.