Skip to content

Commit

Permalink
max length must be greater than 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Brown authored and Michael Brown committed Oct 31, 2019
1 parent 6b1aee1 commit 215a45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Slack/Slack.BlockKit/Classes/Elements/PlainTextInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class PlainTextInput : Element
public string initial_value;
public bool multiline;
private uint _min_length;
private uint _max_length;
private uint _max_length = 100;
private const int inputLengthMax = 3000;

public PlainTextInput(string action_id) : base("plain_text_input")
Expand Down

0 comments on commit 215a45e

Please sign in to comment.