mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-24 20:52:11 +00:00
Fixed project list selection
This commit is contained in:
parent
7a11edefda
commit
3f2cae123b
@ -17,7 +17,7 @@
|
|||||||
SelectedValueChanged="@this.SelectBriefingAsync">
|
SelectedValueChanged="@this.SelectBriefingAsync">
|
||||||
@foreach (var project in this.projects)
|
@foreach (var project in this.projects)
|
||||||
{
|
{
|
||||||
<MudListItem T="Guid" Value="@project.BriefingId" Icon="@(project.IsAvailable ? Icons.Material.Filled.Dashboard : Icons.Material.Filled.WarningAmber)">
|
<MudListItem T="Guid" @key="project.BriefingId" Value="@project.BriefingId" Icon="@(project.IsAvailable ? Icons.Material.Filled.Dashboard : Icons.Material.Filled.WarningAmber)">
|
||||||
<MudStack Spacing="0">
|
<MudStack Spacing="0">
|
||||||
<MudText Typo="Typo.body1">@this.ProjectDisplayName(project)</MudText>
|
<MudText Typo="Typo.body1">@this.ProjectDisplayName(project)</MudText>
|
||||||
<MudText Typo="Typo.caption">@project.ModifiedAtUtc.ToLocalTime().ToString("g")</MudText>
|
<MudText Typo="Typo.caption">@project.ModifiedAtUtc.ToLocalTime().ToString("g")</MudText>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user