From 964b8d668d0390d5265146ab9f0a375fa32f0f3d Mon Sep 17 00:00:00 2001 From: Chris Whitten Date: Thu, 5 Mar 2020 18:47:29 -0800 Subject: [PATCH] Default ActivityProcessed to true (bool) (#2189) --- Composer/packages/lib/shared/src/appschema.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Composer/packages/lib/shared/src/appschema.ts b/Composer/packages/lib/shared/src/appschema.ts index 5330d03cfa..f52fb02d27 100644 --- a/Composer/packages/lib/shared/src/appschema.ts +++ b/Composer/packages/lib/shared/src/appschema.ts @@ -260,12 +260,11 @@ export const appschema: OBISchema = { additionalProperties: true, }, activityProcessed: { - $role: 'expression', - type: 'string', + type: 'boolean', title: 'Activity Processed', description: 'When set to false, the dialog that is called can process the current activity.', - default: 'true', - examples: ['true'], + default: true, + examples: [true], }, resultProperty: { $role: 'expression',