Skip to content

Commit 6a68ee7

Browse files
committed
wip
1 parent 8131f3b commit 6a68ee7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

ghcjs/delivery-calculator/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
out="./dist/latest"
4949
rm -rf "$out"
5050
mkdir -p "$out/static/css"
51-
cp -R ./static/webfonts $out/webfonts
51+
cp -R ./static/webfonts $out/static/webfonts
5252
cp ./static/*.png $out/static/
5353
cp ./static/*.woff2 $out/static/
5454
cp ./static/*.webmanifest $out/

ghcjs/delivery-calculator/src/App/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ pushActionQueue st =
321321
. atomically
322322
. writeTChan (st ^. #modelProducerQueue)
323323

324-
icon :: Icon.Fa -> View Action
324+
icon :: Icon.Fa -> View action
325325
icon = Icon.icon
326326

327327
vsn :: Unicode

ghcjs/delivery-calculator/src/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ main =
5252
update = updateModel,
5353
Miso.view = viewModel,
5454
subs = mempty,
55-
events = mempty,
55+
events = defaultEvents,
5656
initialAction = InitUpdate mSt,
5757
mountPoint = Nothing,
5858
logLevel = Off

ghcjs/miso-functora/src/Functora/Miso/Widgets/Icon.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ data Fa
2020
| FaHeart
2121
| FaPrint
2222
| FaDownload
23-
| FaShareNodes
23+
| FaShare
2424
deriving stock (Eq, Ord, Show, Read, Data, Generic, Enum, Bounded)
2525

2626
instance Icon Fa where
@@ -35,4 +35,4 @@ instance Icon Fa where
3535
fav = FaHeart
3636
print = FaPrint
3737
download = FaDownload
38-
share = FaShareNodes
38+
share = FaShare

0 commit comments

Comments
 (0)