Skip to content
This repository was archived by the owner on Jun 24, 2026. It is now read-only.

Commit 63aabf2

Browse files
committed
Remove default Title value in ApplicationData init
Title is now set directly from the Title variable, allowing it to be null if not specified, instead of defaulting to "Out-ConsoleTableView".
1 parent cf538e7 commit 63aabf2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Microsoft.PowerShell.ConsoleGuiTools/OutConsoleTableViewCmdletCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ baseObject is PSReference ||
160160
_initialized = true;
161161
var applicationData = new ApplicationData
162162
{
163-
Title = Title ?? "Out-ConsoleTableView",
163+
Title = Title,
164164
OutputMode = OutputMode,
165165
Filter = Filter,
166166
MinUI = MinUI,

0 commit comments

Comments
 (0)