@@ -399,6 +399,7 @@ private async Task RenameChat(string? chatPath)
399
399
var dialogParameters = new DialogParameters < SingleInputDialog >
400
400
{
401
401
{ x => x . Message , string . Format ( T ( "Please enter a new or edit the name for your chat '{0}':" ) , chat . Name ) } ,
402
+ { x => x . InputHeaderText , T ( "Chat Name" ) } ,
402
403
{ x => x . UserInput , chat . Name } ,
403
404
{ x => x . ConfirmText , T ( "Rename" ) } ,
404
405
{ x => x . ConfirmColor , Color . Info } ,
@@ -433,6 +434,7 @@ private async Task RenameWorkspace(string? workspacePath)
433
434
var dialogParameters = new DialogParameters < SingleInputDialog >
434
435
{
435
436
{ x => x . Message , string . Format ( T ( "Please enter a new or edit the name for your workspace '{0}':" ) , workspaceName ) } ,
437
+ { x => x . InputHeaderText , T ( "Workspace Name" ) } ,
436
438
{ x => x . UserInput , workspaceName } ,
437
439
{ x => x . ConfirmText , T ( "Rename" ) } ,
438
440
{ x => x . ConfirmColor , Color . Info } ,
@@ -456,6 +458,7 @@ private async Task AddWorkspace()
456
458
var dialogParameters = new DialogParameters < SingleInputDialog >
457
459
{
458
460
{ x => x . Message , T ( "Please name your workspace:" ) } ,
461
+ { x => x . InputHeaderText , T ( "Workspace Name" ) } ,
459
462
{ x => x . UserInput , string . Empty } ,
460
463
{ x => x . ConfirmText , T ( "Add workspace" ) } ,
461
464
{ x => x . ConfirmColor , Color . Info } ,
0 commit comments