Skip to content

Commit

Permalink
Fix FileInput.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdotdesign committed Jun 30, 2016
1 parent a999612 commit 395e39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Ui/FileInput.elm
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
Browse ->
( model, Task.perform (\_ -> Debug.crash "") Selected (FileManager.open model.accept) )
( model, Task.perform (\_ -> Debug.crash "") Selected (FileManager.openSingle model.accept) )

Selected file ->
( { model | file = Just file }, Cmd.none )
Expand Down

0 comments on commit 395e39e

Please sign in to comment.