Skip to content

Commit

Permalink
Default ActivityProcessed to true (bool) (#2189)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwhitten committed Mar 6, 2020
1 parent ae6111e commit 964b8d6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Composer/packages/lib/shared/src/appschema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 964b8d6

Please sign in to comment.