From 29f8232bc000f0c76c99c109c2662e9e0de8fc4d Mon Sep 17 00:00:00 2001 From: Ryan Haskell-Glatz Date: Mon, 29 Jan 2018 19:10:03 -0600 Subject: [PATCH] update DELETE_BY_ID The lack of quotes made my friends think this was a variable instead of a string. --- part3/Main.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part3/Main.elm b/part3/Main.elm index 00a921d..31570a8 100644 --- a/part3/Main.elm +++ b/part3/Main.elm @@ -52,7 +52,7 @@ viewSearchResult result = , a [ href ("https://github.com/" ++ result.name), target "_blank" ] [ text result.name ] , button - -- TODO add an onClick handler that sends a DELETE_BY_ID msg + -- TODO add an onClick handler that sends a "DELETE_BY_ID" msg [ class "hide-result" ] [ text "X" ] ]