mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-22 18:23:36 +00:00
Fixed plugin code issues scrolling out of view (#889)
This commit is contained in:
parent
b404bdd488
commit
34a9fd6283
@ -3,13 +3,6 @@
|
|||||||
<MudDialog DefaultFocus="DefaultFocus.None">
|
<MudDialog DefaultFocus="DefaultFocus.None">
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
<MudStack Spacing="2">
|
<MudStack Spacing="2">
|
||||||
@if (!string.IsNullOrWhiteSpace(this.issue))
|
|
||||||
{
|
|
||||||
<MudAlert Severity="Severity.Error" Dense="true">
|
|
||||||
@this.issue
|
|
||||||
</MudAlert>
|
|
||||||
}
|
|
||||||
|
|
||||||
@if (this.isLoading)
|
@if (this.isLoading)
|
||||||
{
|
{
|
||||||
<MudProgressLinear Indeterminate="true" Color="Color.Primary" />
|
<MudProgressLinear Indeterminate="true" Color="Color.Primary" />
|
||||||
@ -35,6 +28,12 @@
|
|||||||
</MudStack>
|
</MudStack>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
<DialogActions>
|
<DialogActions>
|
||||||
|
@if (!string.IsNullOrWhiteSpace(this.issue))
|
||||||
|
{
|
||||||
|
<MudAlert Severity="Severity.Error" Dense="true" Class="mx-3">
|
||||||
|
@this.issue
|
||||||
|
</MudAlert>
|
||||||
|
}
|
||||||
<MudButton OnClick="@this.Cancel" Disabled="@this.isSaving" Size="Size.Small">
|
<MudButton OnClick="@this.Cancel" Disabled="@this.isSaving" Size="Size.Small">
|
||||||
@T("Cancel")
|
@T("Cancel")
|
||||||
</MudButton>
|
</MudButton>
|
||||||
|
|||||||
@ -8,4 +8,5 @@
|
|||||||
- Added an option for organizations to disable importing, sharing, and exporting plugins.
|
- Added an option for organizations to disable importing, sharing, and exporting plugins.
|
||||||
- Fixed reset buttons in assistants. As you may have noticed in the Document Analysis Assistant, resetting it could leave content from the previous analysis visible. Reset buttons now clear previous results completely.
|
- Fixed reset buttons in assistants. As you may have noticed in the Document Analysis Assistant, resetting it could leave content from the previous analysis visible. Reset buttons now clear previous results completely.
|
||||||
- Fixed dropping files after you closed a dialog that accepts files itself. Such a dialog takes over dropped files while it is open, but never handed that role back when you closed it. Afterwards, the chat and the assistants silently ignored dropped files until you switched to another page. Each time you opened such a dialog again, the problem got worse.
|
- Fixed dropping files after you closed a dialog that accepts files itself. Such a dialog takes over dropped files while it is open, but never handed that role back when you closed it. Afterwards, the chat and the assistants silently ignored dropped files until you switched to another page. Each time you opened such a dialog again, the problem got worse.
|
||||||
|
- Fixed the integrated code editor to keep errors and other issues in plugin code visible in the footer while scrolling.
|
||||||
- Upgraded dependencies to their latest versions to improve security and stability.
|
- Upgraded dependencies to their latest versions to improve security and stability.
|
||||||
Loading…
Reference in New Issue
Block a user