Improved readability of the issue component

This commit is contained in:
Thorsten Sommer 2024-07-28 13:51:27 +02:00
parent 30d2a5fa44
commit ddc43542fe
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
@if (this.IssuesData.Any()) @if (this.IssuesData.Any())
{ {
<MudPaper Class="pr-2 mt-3" Outlined="@true"> <MudPaper Class="pa-3 mr-3 mt-3 border-dashed border rounded-lg mud-alert-outlined-error">
<MudText Typo="Typo.h6">Issues</MudText> <MudText Typo="Typo.h6">Issues</MudText>
<MudList T="string"> <MudList T="string">
@foreach (var issue in this.IssuesData) @foreach (var issue in this.IssuesData)

View File

@ -3,6 +3,7 @@
- Added the possibility to provide default options for the translation assistant - Added the possibility to provide default options for the translation assistant
- Added the possibility to provide default options for the coding assistant - Added the possibility to provide default options for the coding assistant
- Added the possibility to provide default options for the text summarizer assistant - Added the possibility to provide default options for the text summarizer assistant
- Improved readability of the issue component
- Improved switches: when an option is enabled, the switch is using a different color - Improved switches: when an option is enabled, the switch is using a different color
- Fixed the applying of spellchecking settings to the single-line dialog - Fixed the applying of spellchecking settings to the single-line dialog
- Restructured the layout of the settings page - Restructured the layout of the settings page