WIP on adding htmax option (#59)
This commit is contained in:
@@ -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 }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user