Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,21 @@
}
}

<BitStack Alignment="BitAlignment.Center" FitHeight FillContent Class="default-prompt-container">

@foreach (var suggestion in followUpSuggestions)
{
<BitButton FixedColor
Variant="BitVariant.Outline"
Class="default-prompt-button"
Color="BitColor.SecondaryBackground"
OnClick="() => SendPromptMessage(suggestion)">
@suggestion
</BitButton>
}

</BitStack>

@if (isLoading && string.IsNullOrWhiteSpace(lastAssistantMessage?.Content))
{
<BitEllipsisLoading Size="BitSize.Small" />
Expand Down Expand Up @@ -99,24 +114,6 @@
</BitStack>
}

@if (followUpSuggestions.Any())
{
<BitStack Alignment=" BitAlignment.Center" FitHeight FillContent Class="default-prompt-container">

@foreach (var suggestion in followUpSuggestions)
{
<BitButton FixedColor
Variant="BitVariant.Outline"
Class="default-prompt-button"
Color="BitColor.SecondaryBackground"
OnClick="() => SendPromptMessage(suggestion)">
@suggestion
</BitButton>
}

</BitStack>
}

<BitStack FitHeight Style="position:relative">
<BitTextField Rows="1"
Immediate
Expand Down
Loading