Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #18 from slamdata/safareli-patch-1
Browse files Browse the repository at this point in the history
remove DateTime from InputType
  • Loading branch information
safareli authored Dec 7, 2017
2 parents d1b5b15 + 391150f commit 0634dd8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Data/BrowserFeatures/InputType.purs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import Prelude
data InputType
= Color
| Date
| DateTime
| DateTimeLocal
| Time
| Month
Expand All @@ -25,7 +24,6 @@ allInputTypes :: Array InputType
allInputTypes =
[ Color
, Date
, DateTime
, DateTimeLocal
, Time
, Month
Expand All @@ -44,7 +42,6 @@ derive instance ordInputType :: Ord InputType
instance showInputType :: Show InputType where
show Color = "Color"
show Date = "Date"
show DateTime = "DateTime"
show DateTimeLocal = "DateTimeLocal"
show Time = "Time"
show Month = "Month"
Expand All @@ -61,7 +58,6 @@ instance showInputType :: Show InputType where
renderInputType :: InputType -> String
renderInputType Color = "color"
renderInputType Date = "date"
renderInputType DateTime = "datetime"
renderInputType DateTimeLocal = "datetime-local"
renderInputType Time = "time"
renderInputType Month = "month"
Expand Down

0 comments on commit 0634dd8

Please sign in to comment.