From c56d4d41d0a29aea039013f3c59b1c54b32ca131 Mon Sep 17 00:00:00 2001 From: Or Novogroder <108669655+OrNovo@users.noreply.github.com> Date: Wed, 7 Feb 2024 16:22:43 +0200 Subject: [PATCH] patch - fixing DataTableSpansAggregationModel parsing bug (#200) --- coralogix/resource_coralogix_dashboard.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/coralogix/resource_coralogix_dashboard.go b/coralogix/resource_coralogix_dashboard.go index 1192fce6..c07ae863 100644 --- a/coralogix/resource_coralogix_dashboard.go +++ b/coralogix/resource_coralogix_dashboard.go @@ -603,10 +603,10 @@ type BarChartQueryDataPrimeModel struct { } type DataTableSpansAggregationModel struct { - ID types.String `json:"id"` - Name types.String `json:"name"` - IsVisible types.Bool `json:"is_visible"` - Aggregation *SpansAggregationModel `json:"aggregation"` + ID types.String `tfsdk:"id"` + Name types.String `tfsdk:"name"` + IsVisible types.Bool `tfsdk:"is_visible"` + Aggregation *SpansAggregationModel `tfsdk:"aggregation"` } type BarChartStackDefinitionModel struct {