From 3ccc9d9bf5d3e680e57b5d7efeb962bd90d75ff5 Mon Sep 17 00:00:00 2001 From: Kuzminykh Aleksandr Olegovich Date: Tue, 19 Oct 2021 18:34:08 +0300 Subject: [PATCH] Fix templating init with options field (#173) --- board.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board.go b/board.go index da8edf1f..e3aaa1fd 100644 --- a/board.go +++ b/board.go @@ -85,7 +85,7 @@ type ( AutoCount *int `json:"auto_count,omitempty"` Datasource *string `json:"datasource"` Refresh BoolInt `json:"refresh"` - Options []Option `json:"options"` + Options []Option `json:"options,omitempty"` IncludeAll bool `json:"includeAll"` AllFormat string `json:"allFormat"` AllValue string `json:"allValue"`