Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrapping text on bug report dialog so it is always visible #2117

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions settings/DevHome.Settings/Views/FeedbackPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
</Expander.Header>
<Expander.Content>
<StackPanel>
<TextBlock x:Name="CpuID"/>
<TextBlock x:Name="PhysicalMemory"/>
<TextBlock x:Name="ProcessorArchitecture"/>
<TextBlock x:Name="CpuID" TextWrapping="Wrap"/>
<TextBlock x:Name="PhysicalMemory" TextWrapping="Wrap"/>
<TextBlock x:Name="ProcessorArchitecture" TextWrapping="Wrap"/>
</StackPanel>
</Expander.Content>
</Expander>
Expand All @@ -55,8 +55,8 @@
</Expander.Header>
<Expander.Content>
<StackPanel>
<TextBlock x:Name="ReportBugIncludeExtensionsList" />
<TextBlock x:Name="WidgetServiceInfo"/>
<TextBlock x:Name="ReportBugIncludeExtensionsList" TextWrapping="Wrap"/>
<TextBlock x:Name="WidgetServiceInfo" TextWrapping="Wrap"/>
</StackPanel>
</Expander.Content>
</Expander>
Expand Down