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 @@ -240,7 +240,7 @@ The Kanban sentiment analysis interface starts with a Progress Button labeled **
- **Kanban Board:** Displays pizza orders grouped by Category (Menu, Order, Ready to Serve, Delivered). Each card shows pizza details and later displays sentiment emoji for delivered items.

{% tabs %}
{% highlight %}
{% highlight razor %}

<SfProgressButton Content="@Content" OnClick="@GetScore" EnableProgress="false">
<ProgressButtonEvents OnBegin="Begin" OnEnd="End"></ProgressButtonEvents>
Expand Down Expand Up @@ -424,7 +424,7 @@ Once the AI response is processed and `ShowScore` is set to `true`, the Kanban b
This is handled in the Kanban card template using conditional rendering:

{% tabs %}
{% highlight %}
{% highlight razor %}

if (card.Category == "Delivered" || card.Category == "Served")
{
Expand Down