We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca8f87 commit 0fb2180Copy full SHA for 0fb2180
src/users/dashboards.rs
@@ -119,7 +119,7 @@ impl Dashboard {
119
120
if let Some(dashboard_id) = &self.dashboard_id {
121
map.insert(
122
- "dashboard_id".to_string(),
+ "dashboardId".to_string(),
123
serde_json::Value::String(dashboard_id.to_string()),
124
);
125
}
@@ -136,7 +136,7 @@ impl Dashboard {
136
137
138
139
- "is_favorite".to_string(),
+ "isFavorite".to_string(),
140
serde_json::Value::Bool(self.is_favorite.unwrap_or(false)),
141
142
0 commit comments