Skip to content

Commit

Permalink
set the _selectedFieldPath and value at the end of doOpenGlobalVariab…
Browse files Browse the repository at this point in the history
…le method (similar to other doOpen methods
  • Loading branch information
adamerstelle committed Sep 10, 2024
1 parent 401970d commit 4f8a2d9
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}]);

Expand Down

0 comments on commit 4f8a2d9

Please sign in to comment.