Skip to content

Commit

Permalink
patch - fixing DataTableSpansAggregationModel parsing bug (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrNovo committed Feb 7, 2024
1 parent 2396732 commit c56d4d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions coralogix/resource_coralogix_dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit c56d4d4

Please sign in to comment.