From d9dc1152b02390b226af3f7ecad0cc241501aa8a Mon Sep 17 00:00:00 2001 From: Daniil Iaitskov Date: Mon, 23 Mar 2026 09:54:03 +0300 Subject: [PATCH 1/2] add missing CacheBust argument Href in vanilla --- src/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main.hs b/src/Main.hs index a8592df..5673b5b 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -56,8 +56,8 @@ app :: App Model Action app = (component emptyModel updateModel viewModel) #ifndef WASM { styles = - [ Href "https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.3/css/bulma.min.css" - , Href "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" + [ Href "https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.3/css/bulma.min.css" True + , Href "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" True ] } #endif From 21b172dc7f946f157b334389ac1a3db16b333408 Mon Sep 17 00:00:00 2001 From: Daniil Iaitskov Date: Mon, 23 Mar 2026 09:54:16 +0300 Subject: [PATCH 2/2] unused pragma --- src/Main.hs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Main.hs b/src/Main.hs index 5673b5b..7fe7147 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -4,7 +4,6 @@ {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE RecordWildCards #-} -{-# LANGUAGE TypeApplications #-} {-# LANGUAGE OverloadedStrings #-} ----------------------------------------------------------------------------- -- |