WIP on adding htmax option (#59)

This commit is contained in:
2026-07-05 17:54:36 -04:00
parent 7c588662d2
commit 9d2277ab32
10 changed files with 81 additions and 15 deletions
+3 -3
View File
@@ -1379,7 +1379,7 @@ type SettingsModel = {
ThemeId: string
/// <summary>Whether to automatically load htmx</summary>
AutoHtmx: bool
AutoHtmx: string
/// <summary>The default location for uploads</summary>
Uploads: string
@@ -1399,7 +1399,7 @@ type SettingsModel = {
PostsPerPage = webLog.PostsPerPage
TimeZone = webLog.TimeZone
ThemeId = string webLog.ThemeId
AutoHtmx = webLog.AutoHtmx
AutoHtmx = string webLog.AutoHtmx
Uploads = string webLog.Uploads
AutoOpenGraph = webLog.AutoOpenGraph }
@@ -1415,7 +1415,7 @@ type SettingsModel = {
PostsPerPage = this.PostsPerPage
TimeZone = this.TimeZone
ThemeId = ThemeId this.ThemeId
AutoHtmx = this.AutoHtmx
AutoHtmx = AutoHtmxType.Parse this.AutoHtmx
Uploads = UploadDestination.Parse this.Uploads
AutoOpenGraph = this.AutoOpenGraph }