Skip to content

Commit

Permalink
Merge pull request #159 from Sanketika-Obsrv/1.4.0-bugfixes
Browse files Browse the repository at this point in the history
fix #OBS-I479 timestamp typo fix
  • Loading branch information
pallakartheekreddy authored Jan 8, 2025
2 parents 396a7d2 + 44ae098 commit 76973d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const Processing: React.FC = () => {

const transformationOptionsWithType = extractTransformationOptionsWithType(datasetData?.data_schema || {});

const excludedKeywords = ['date', 'timestamp', 'datetime', 'epoch'];
const excludedKeywords = ['date', 'timestamp', 'date-time', 'epoch'];

const dedupeOptions = _.compact(transformationOptionsWithType.map((option: any) =>{
if (!excludedKeywords.includes(option.data_type)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const Storage = () => {
const datasetConfig = _.get(fetchData, 'dataset_config', {});
const datasetConfig_indexing = _.get(fetchData, 'dataset_config.indexing_config', {});
const datasetConfig_keys = _.get(fetchData, 'dataset_config.keys_config', {});
const timeStampTypes = ['date', 'timestamp', 'datetime', 'epoch'];
const timeStampTypes = ['date', 'timestamp', 'date-time', 'epoch'];

useEffect(() => {
if(fetchDatasetType) {
Expand Down

0 comments on commit 76973d5

Please sign in to comment.