Skip to content

Commit

Permalink
Only user created variables visible in ReadVariableFromFile configurator
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmayer-dev committed Jun 4, 2022
1 parent 0f8e0d1 commit a9983f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private void ReadVariableFromFileActionConfigView_Load(object sender, EventArgs
private void LoadVariables()
{
this.variable.Items.Clear();
foreach (var variable in VariableManager.Variables)
foreach (var variable in VariableManager.Variables.FindAll(x => x.Creator == "User"))
{
this.variable.Items.Add(variable.Name);
}
Expand Down

0 comments on commit a9983f8

Please sign in to comment.