mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
🐛 Fix: missing parameter requiredFields for Valine
This commit is contained in:
+8
-1
@@ -5,14 +5,21 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## v0.2.18
|
||||
|
||||
## Breaking Updates
|
||||
|
||||
- [#288](https://github.com/hugo-fixit/FixIt/pull/288)
|
||||
|
||||
## What's New
|
||||
|
||||
> Snapshot: <>
|
||||
|
||||
- :sparkles: Feat: add instant page (@Mejituu [#279](https://github.com/hugo-fixit/FixIt/pull/279))
|
||||
- :sparkles: Feat: add `force` option value to `params.page.lightgallery`
|
||||
- :bug: Fix: donate images without lazy loading (@Mejituu [#279](https://github.com/hugo-fixit/FixIt/pull/279))
|
||||
- :bug: Fix: discordinvite typo (@mathieu-gilloots [#282](https://github.com/hugo-fixit/FixIt/pull/282))
|
||||
- :bug: Fix: missing parameter `requiredFields` for Valine
|
||||
- :recycle: Refactor: image lazy loading ([#283](https://github.com/hugo-fixit/FixIt/pull/283))
|
||||
- :recycle: Refactor: author's avatar of post or profile ([#261](https://github.com/hugo-fixit/FixIt/discussions/261))
|
||||
- :recycle: Refactor: author's avatar of post or profile ([#288](https://github.com/hugo-fixit/FixIt/pull/288))
|
||||
- :art: Style: fix `#comments` css style conflict ([#269](https://github.com/hugo-fixit/FixIt/issues/269))
|
||||
- :wrench: Chore: change the theme minimum supported Hugo versions above **0.89.0**
|
||||
- :arrow_up: Chore(libs):
|
||||
|
||||
+2
-1
@@ -529,7 +529,8 @@
|
||||
appKey = ""
|
||||
placeholder = ""
|
||||
avatar = "mp"
|
||||
meta= ""
|
||||
meta = ""
|
||||
requiredFields = ""
|
||||
pageSize = 10
|
||||
lang = ""
|
||||
visitor = true
|
||||
|
||||
+1
-1
Submodule docs updated: d96d65c6a3...58c462496a
@@ -94,6 +94,9 @@
|
||||
{{- with $valine.meta -}}
|
||||
{{- $commentConfig = dict "meta" . | dict "valine" | merge $commentConfig -}}
|
||||
{{- end -}}
|
||||
{{- with $valine.requiredFields -}}
|
||||
{{- $commentConfig = dict "requiredFields" . | dict "valine" | merge $commentConfig -}}
|
||||
{{- end -}}
|
||||
{{- with $valine.pageSize -}}
|
||||
{{- $commentConfig = dict "pageSize" . | dict "valine" | merge $commentConfig -}}
|
||||
{{- end -}}
|
||||
|
||||
Reference in New Issue
Block a user