aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/View.elm
diff options
context:
space:
mode:
authorJoris2016-06-19 21:18:56 +0200
committerJoris2016-06-21 12:49:51 +0200
commit36a90770ebeb9bd99e136bfe035fdda5dfabc304 (patch)
tree42b605108f4b8b731fecd65b028006aa41399f40 /src/client/elm/View.elm
parentfb5629d7f705b7e80dcf1852da58d2864c2b0d25 (diff)
downloadbudget-36a90770ebeb9bd99e136bfe035fdda5dfabc304.tar.gz
budget-36a90770ebeb9bd99e136bfe035fdda5dfabc304.tar.bz2
budget-36a90770ebeb9bd99e136bfe035fdda5dfabc304.zip
Add a dialog to confirm income deletion
Diffstat (limited to 'src/client/elm/View.elm')
-rw-r--r--src/client/elm/View.elm3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/elm/View.elm b/src/client/elm/View.elm
index 38734bc..f4b0953 100644
--- a/src/client/elm/View.elm
+++ b/src/client/elm/View.elm
@@ -3,11 +3,13 @@ module View exposing
)
import Html exposing (..)
+import Html.App as Html
import Model exposing (Model)
import Msg exposing (Msg)
import Model.View exposing (..)
import LoggedData
+import Dialog
import View.Header exposing (renderHeader)
@@ -20,6 +22,7 @@ view model =
[]
[ renderHeader model
, renderMain model
+ , Dialog.view model.view model.dialog
]
renderMain : Model -> Html Msg