Skip to content

Commit

Permalink
fix(dataset): Ensure DATETIME FORMAT is ISO 8601 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
john-bodley authored and mapledan committed Jan 23, 2024
1 parent 6aee27c commit 0269e95
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 @@ -329,7 +329,7 @@ function ColumnCollectionTable({
control={
<TextControl
controlId="python_date_format"
placeholder="%Y/%m/%d"
placeholder="%Y-%m-%d"
/>
}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('DatasourceEditor', () => {

const inputLabel = screen.getByPlaceholderText('Label');
const inputDescription = screen.getByPlaceholderText('Description');
const inputDtmFormat = screen.getByPlaceholderText('%Y/%m/%d');
const inputDtmFormat = screen.getByPlaceholderText('%Y-%m-%d');
const inputCertifiedBy = screen.getByPlaceholderText('Certified by');
const inputCertDetails = screen.getByPlaceholderText(
'Certification details',
Expand Down

0 comments on commit 0269e95

Please sign in to comment.