Fix alignment in charts endpoint (#13275)
thiagoftsm committed
Jun 30, 2022 at 14:24 UTC
df784d47da756e9dca8c75203fa5c5c369f58ab3
1 file changed
+1
-1
web/api/formatters/rrdset2json.c
+1
-1
@@ -14,7 +14,7 @@ void chart_labels2json(RRDSET *st, BUFFER *wb, size_t indentation)
14
15
tabs[0] = '\0';
16
while (indentation) {
17
- strcat(tabs, "\t");
17
+ strcat(tabs, "\t\t");
18
indentation--;
19
}
20