This commit is contained in:
Peter Maquiran
2024-07-26 18:19:08 +01:00
parent 12edcc7481
commit 739279d3e3
4 changed files with 17 additions and 10 deletions
@@ -31,7 +31,7 @@ function convertAttributesToString(obj) {
result[key] = JSON.stringify(obj[key], null, 2);
} else {
// Convert primitive values to string
result[key] = String(obj[key]);
result[key] = obj[key];
}
}
}