Skip to content

Commit

Permalink
Merge pull request #404 from credebl/feat-date-time-datatype-in-attri…
Browse files Browse the repository at this point in the history
…bute

feat: added date and time option in datatype of attributes
  • Loading branch information
nishad-ayanworks authored Nov 2, 2023
2 parents 3e9c106 + 6d51eef commit 0ae1a42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Resources/Schema/Create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import EcosystemProfileCard from '../../../commonComponents/EcosystemProfileCard
const options = [
{ value: 'string', label: 'String' },
{ value: 'number', label: 'Number' },
{ value: 'date', label: 'Date' },
{ value: 'time', label: 'Time' },
{ value: 'datetime-local', label: 'Date & Time' },
];

interface IAttributes {
Expand Down

0 comments on commit 0ae1a42

Please sign in to comment.