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 bd24a4e commit 937259eCopy full SHA for 937259e
source/nodejs/adaptivecards/src/serialization.ts
@@ -291,9 +291,7 @@ export abstract class BaseSerializationContext {
291
292
if (items.length === 0) {
293
if (target.hasOwnProperty(propertyName) && Array.isArray(target[propertyName])) {
294
- if (!GlobalSettings.enableFullJsonRoundTrip) {
295
- delete target[propertyName];
296
- }
+ delete target[propertyName];
297
}
298
} else {
299
this.serializeValue(target, propertyName, items);
0 commit comments