Skip to content

Commit

Permalink
Merge pull request #899 from IDEMSInternational/content-fix-v0.10.3
Browse files Browse the repository at this point in the history
fix a content issue identified in the pre-release testing
  • Loading branch information
smborio authored Jul 13, 2021
2 parents ce1b230 + a200d86 commit c0c7d4c
Showing 1 changed file with 69 additions and 4 deletions.
73 changes: 69 additions & 4 deletions packages/plh-data/data/template/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24782,10 +24782,10 @@ const template: FlowTypes.Template[] = [
action_list: [
{
trigger: "click",
action_id: "reset_app",
args: [],
_raw: "click | reset_app",
_cleaned: "click | reset_app",
action_id: "pop_up",
args: ["demo_reset_app_pop"],
_raw: "click | pop_up:demo_reset_app_pop",
_cleaned: "click | pop_up:demo_reset_app_pop",
},
],
exclude_from_translation: true,
Expand Down Expand Up @@ -25086,6 +25086,71 @@ const template: FlowTypes.Template[] = [
],
_xlsxPath: "plh_sheets_beta/plh_templating/demo_templates/demo_navigation.xlsx",
},
{
flow_type: "template",
flow_name: "demo_reset_app_pop",
status: "released",
rows: [
{
type: "title",
name: "title",
value: "Reset @global.parent_app",
exclude_from_translation: true,
_nested_name: "title",
_dynamicFields: {
value: [
{
fullExpression: "Reset @global.parent_app",
matchedExpression: "@global.parent_app",
type: "global",
fieldName: "parent_app",
},
],
},
_dynamicDependencies: {
"@global.parent_app": ["value"],
},
},
{
type: "text",
name: "text_1",
value:
"By pressing the button below you will reset the app to its initial settings.\n\nThis will restore all the default settings and delete any progress made.\n\nAll the data entered to the app will be deleted and you will not be able to recover it.",
exclude_from_translation: true,
_nested_name: "text_1",
},
{
type: "button",
name: "button_1",
value: "Reset @global.parent_app",
action_list: [
{
trigger: "click",
action_id: "reset_app",
args: [],
_raw: "click | reset_app",
_cleaned: "click | reset_app",
},
],
exclude_from_translation: true,
_nested_name: "button_1",
_dynamicFields: {
value: [
{
fullExpression: "Reset @global.parent_app",
matchedExpression: "@global.parent_app",
type: "global",
fieldName: "parent_app",
},
],
},
_dynamicDependencies: {
"@global.parent_app": ["value"],
},
},
],
_xlsxPath: "plh_sheets_beta/plh_templating/demo_templates/demo_navigation.xlsx",
},
{
flow_type: "template",
module: "1on1",
Expand Down

0 comments on commit c0c7d4c

Please sign in to comment.