Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration to reflex-0.5.0 #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ main =
el "thead" . el "tr" $ forM_ colNames $ \n ->
el "th" (text n)
el "tbody" . forM_ table $ \Entry{..} -> do
let cells = [toString a, toString b, show c, show d]
let cells = [a, b, toText $ show c, toText $ show d]
el "tr" . forM_ cells $ \cell -> do
el "td" (text cell)

Expand Down
7 changes: 5 additions & 2 deletions stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ packages:
- '.'
- location:
git: [email protected]:reflex-frp/reflex.git
commit: 312b1905557671ae223813e7430ab07d2b65d0f7
commit: 9e6b9e3d7ac5a0b9d711b2514c0c51ed0c5533a5
- location:
git: [email protected]:reflex-frp/reflex-dom.git
commit: ad83d0b6b1e3388713f8ae31a8efd2542ea372f9
commit: 8c509403af533bf7135a9cba34c26c21f649f3a6

extra-deps:
- ghcjs-dom-0.2.4.0
- ref-tf-0.4.0.1
- data-default-0.6.0
- data-default-instances-base-0.1.0.1
- prim-uniq-0.1.0.1
- zenc-0.1.1
- dependent-map-0.2.4.0