mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-19 21:38:16 +08:00
Do not append suffix to text prompt
Do not append suffix to text prompt unless there are choices or a default value specified. Closes #413
This commit is contained in:

committed by
Patrik Svensson

parent
865552c3f2
commit
2011cb2eff
18
test/Spectre.Console.Tests/Utilities/GitHubIssueAttribute.cs
Normal file
18
test/Spectre.Console.Tests/Utilities/GitHubIssueAttribute.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Spectre.Console.Tests
|
||||
{
|
||||
public sealed class GitHubIssueAttribute : Attribute
|
||||
{
|
||||
public int IssueId { get; }
|
||||
|
||||
public GitHubIssueAttribute(int issueId)
|
||||
{
|
||||
IssueId = issueId;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user