Skip to content

Commit

Permalink
add comment ID to output
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Feb 18, 2020
1 parent 63543e3 commit ed73050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Comment.elm
Expand Up @@ -11,12 +11,12 @@ type alias Comment =


view : Comment -> Html msg
view { height } =
view { height, id } =
Html.div
[ Attrs.style "width" "150px"
, Attrs.style "height" (String.fromInt height ++ "px")
, Attrs.style "border" "1px solid blue"
, Attrs.style "border-radius" "10px"
, Attrs.style "background-color" "white"
]
[]
[ Html.text (String.fromInt id) ]
1 change: 0 additions & 1 deletion src/Constraint.elm
Expand Up @@ -32,7 +32,6 @@ init { heights, attachments, margin } =
, positions = attachments
, margin = margin
}
|> Debug.log "initial"


positions : Model -> Dict Int Float
Expand Down

0 comments on commit ed73050

Please sign in to comment.