mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-11-23 09:10:20 +00:00
20 lines
603 B
Plaintext
20 lines
603 B
Plaintext
@inherits MSGComponentBase
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudJustifiedText Typo="Typo.body1">
|
|
@T("Here you can check if Pandoc loads your file as expected.")
|
|
</MudJustifiedText>
|
|
|
|
<ReadFileContent Text="@T("Load document")" @bind-FileContent="@this.documentContent"/>
|
|
|
|
<MudText Typo="Typo.body1">
|
|
@this.documentContent
|
|
</MudText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
|
|
@T("Cancel")
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |