fix(bootstrap): default_button_index possibly not taking effect (#3156)

Fixes argument ordering
This commit is contained in:
Filip Vukelic 2024-10-13 16:55:26 +02:00 committed by GitHub
commit fdf45baf57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@
{{ 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. */}}
{{ $default_filter_item := (index $block.content.buttons ($filter_default)) }}

View file

@ -17,7 +17,7 @@
{{ 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. */}}
{{ $default_filter_item := (index $block.Params.content.filter_button ($filter_default)) }}