mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-23 18:10:52 +02:00
fix(bootstrap): default_button_index possibly not taking effect (#3156)
Fixes argument ordering
This commit is contained in:
parent
2f0f3249cb
commit
fdf45baf57
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
{{ if $block.content.buttons }}
|
{{ if $block.content.buttons }}
|
||||||
|
|
||||||
{{ $filter_default := default (int $block.content.default_button_index) 0 }}
|
{{ $filter_default := default 0 (int $block.content.default_button_index) }}
|
||||||
|
|
||||||
{{/* Parse default filter tag from front matter in the form of either tag name or CSS class name. */}}
|
{{/* Parse default filter tag from front matter in the form of either tag name or CSS class name. */}}
|
||||||
{{ $default_filter_item := (index $block.content.buttons ($filter_default)) }}
|
{{ $default_filter_item := (index $block.content.buttons ($filter_default)) }}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
{{ if $block.Params.content.filter_button }}
|
{{ if $block.Params.content.filter_button }}
|
||||||
|
|
||||||
{{ $filter_default := default (int $block.Params.content.filter_default) 0 }}
|
{{ $filter_default := default 0 (int $block.Params.content.filter_default) }}
|
||||||
|
|
||||||
{{/* Parse default filter tag from front matter in the form of either tag name or CSS class name. */}}
|
{{/* Parse default filter tag from front matter in the form of either tag name or CSS class name. */}}
|
||||||
{{ $default_filter_item := (index $block.Params.content.filter_button ($filter_default)) }}
|
{{ $default_filter_item := (index $block.Params.content.filter_button ($filter_default)) }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue