Skip to content

Commit

Permalink
undo unintended commits
Browse files Browse the repository at this point in the history
  • Loading branch information
mauberti-bc committed Aug 10, 2024
1 parent b7ba233 commit e7eaeca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/features/datasets/DatasetPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const DatasetPage: React.FC<React.PropsWithChildren> = () => {
<Container maxWidth="xl">
<Box py={3}>
<Paper elevation={0}>
<Box display="flex">To be determined</Box>
<Box display="flex">TBD</Box>
</Paper>
</Box>
</Container>
Expand Down
2 changes: 1 addition & 1 deletion database/src/seeds/02_population_feature_tables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ export async function seed(knex: Knex): Promise<void> {
insert into feature_type_property (feature_type_id, feature_property_id, sort, record_effective_date) values ((select feature_type_id from feature_type where name = 'telemetry'), (select feature_property_id from feature_property where name = 'start_date'), 2, now()) ON CONFLICT DO NOTHING;
insert into feature_type_property (feature_type_id, feature_property_id, sort, record_effective_date) values ((select feature_type_id from feature_type where name = 'telemetry'), (select feature_property_id from feature_property where name = 'end_date'), 3, now()) ON CONFLICT DO NOTHING;
`);
}
}

0 comments on commit e7eaeca

Please sign in to comment.