From 96aea2535a85c615111496f6d077eb0e9c9fa644 Mon Sep 17 00:00:00 2001 From: Joel Stålnacke Date: Sun, 28 Sep 2025 14:28:50 +0300 Subject: Move HTML views from Core to Web Fable can't bundle Falco.Markup because it's a compiled library, so we can't have templates on the frontend. --- Aamukampa.Frontend/App.fs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Aamukampa.Frontend') diff --git a/Aamukampa.Frontend/App.fs b/Aamukampa.Frontend/App.fs index d388013..3d188e1 100644 --- a/Aamukampa.Frontend/App.fs +++ b/Aamukampa.Frontend/App.fs @@ -18,11 +18,11 @@ window.setInterval((fun () -> | false, _ -> None document.getElementById "time-units" |> fun el -> - el.outerHTML <- - Views.Main.timeUnits { - TimeLeft = Domain.getTimeLeft k st now |> Option.get - TimeCompleted = Domain.getTimeCompleted k now |> Option.get - } |> renderHtml + // el.outerHTML <- + // Views.Main.timeUnits { + // TimeLeft = Domain.getTimeLeft k st now |> Option.get + // TimeCompleted = Domain.getTimeCompleted k now |> Option.get + // } |> renderHtml ()), 1000, [||]) |> ignore -- cgit v1.2.3