From 4f8a2d9006a2a9173d0df72cfc8b9a5c490fb632 Mon Sep 17 00:00:00 2001 From: adamerstelle Date: Mon, 9 Sep 2024 20:22:08 -0400 Subject: [PATCH] set the _selectedFieldPath and value at the end of doOpenGlobalVariable method (similar to other doOpen methods --- .../main/default/lwc/fsc_flowCombobox/fsc_flowCombobox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flow_screen_components/FlowScreenComponentsBasePack/force-app/main/default/lwc/fsc_flowCombobox/fsc_flowCombobox.js b/flow_screen_components/FlowScreenComponentsBasePack/force-app/main/default/lwc/fsc_flowCombobox/fsc_flowCombobox.js index 8784abf3f..1c296e7e7 100644 --- a/flow_screen_components/FlowScreenComponentsBasePack/force-app/main/default/lwc/fsc_flowCombobox/fsc_flowCombobox.js +++ b/flow_screen_components/FlowScreenComponentsBasePack/force-app/main/default/lwc/fsc_flowCombobox/fsc_flowCombobox.js @@ -881,6 +881,9 @@ export default class FlowCombobox extends LightningElement { return null; } + this._selectedFieldPath = (this._selectedFieldPath ? this._selectedFieldPath + '.' : '') + value; + this.value = this._selectedFieldPath + '.'; + // Set the Options this.setOptions([{type: value + ' Outputs', options: tempOptions}]);