Skip to content

Commit

Permalink
Fix field description
Browse files Browse the repository at this point in the history
  • Loading branch information
jdunkerley committed Mar 7, 2016
1 parent e612fd0 commit 5c98062
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 43 deletions.
2 changes: 1 addition & 1 deletion AlteryxAddIns/RandomNumber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private bool InitFunc(RecordInfo info)
return false;
}
fieldDescription.Source = nameof(RandomNumber);
fieldDescription.Description = $"Random Number between {config.Minimum} and {config.Maximum}";
fieldDescription.Description = $"Random Number {config.ToString().Replace($"{config.OutputFieldName}=", "")}";

this._outputRecordInfo = Utilities.CreateRecordInfo(info, fieldDescription);
this._outputFieldBase = this._outputRecordInfo.GetFieldByName(config.OutputFieldName, false);
Expand Down
Loading

0 comments on commit 5c98062

Please sign in to comment.