Skip to content

Commit 2331b54

Browse files
committed
Fix missing mime type attribute
1 parent aff9143 commit 2331b54

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

src/FormToolkit/View.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ module FormToolkit.View exposing
2727
2828
-}
2929

30-
import File
3130
import FormToolkit.Error exposing (Error)
3231
import FormToolkit.Field as Field exposing (Field(..), Msg)
3332
import FormToolkit.Value exposing (Value(..))
@@ -94,6 +93,7 @@ type alias FieldAttributes id =
9493
, disabled : Bool
9594
, hidden : Bool
9695
, pattern : List Internal.Utils.MaskToken
96+
, acceptedMimeTypes : List String
9797
}
9898

9999

tests/ParseTest.elm

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -448,11 +448,6 @@ suite =
448448
]
449449
)
450450
)
451-
452-
-- , describe "and errors are presented in the correct order" []
453-
-- , test errors are not repeated after multiple updates
454-
-- , test group decoding yields error (implemented)
455-
-- , describe "blank string" should be blank
456451
]
457452
, let
458453
original =

0 commit comments

Comments
 (0)