mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 16:49:06 +00:00
Fixed a bug where the reset function could lead to undesired behavior (#82)
This commit is contained in:
parent
37b38e6a40
commit
83fe126c9f
@ -22,12 +22,14 @@
|
|||||||
{
|
{
|
||||||
<MudProgressLinear Color="Color.Primary" Indeterminate="true" Class="mb-6" />
|
<MudProgressLinear Color="Color.Primary" Indeterminate="true" Class="mb-6" />
|
||||||
}
|
}
|
||||||
|
|
||||||
<div id="@RESULT_DIV_ID" class="mr-2 mt-3">
|
<div id="@RESULT_DIV_ID" class="mr-2 mt-3">
|
||||||
|
</div>
|
||||||
|
|
||||||
@if (this.ShowResult && this.resultingContentBlock is not null)
|
@if (this.ShowResult && this.resultingContentBlock is not null)
|
||||||
{
|
{
|
||||||
<ContentBlockComponent Role="@(this.resultingContentBlock.Role)" Type="@(this.resultingContentBlock.ContentType)" Time="@(this.resultingContentBlock.Time)" Content="@(this.resultingContentBlock.Content)"/>
|
<ContentBlockComponent Role="@(this.resultingContentBlock.Role)" Type="@(this.resultingContentBlock.ContentType)" Time="@(this.resultingContentBlock.Time)" Content="@(this.resultingContentBlock.Content)"/>
|
||||||
}
|
}
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="@AFTER_RESULT_DIV_ID" class="mt-3">
|
<div id="@AFTER_RESULT_DIV_ID" class="mt-3">
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
# v0.8.11, build 173
|
# v0.8.11, build 173
|
||||||
- Fixed a bug where the chats in the workspace component were not sorted by date.
|
- Fixed a bug where the chats in the workspace component were not sorted by date.
|
||||||
|
- Fixed a bug where the reset function could lead to undesired behavior.
|
||||||
- Refactored code base to improve maintainability.
|
- Refactored code base to improve maintainability.
|
Loading…
Reference in New Issue
Block a user