Skip to content

Commit 3fdfe21

Browse files
authored
chore(webapp): add currency unit to agent LLM spend chart label (#3988)
## ✅ Checklist - [x] I have followed every step in the [contributing guide](https://github.com/triggerdotdev/trigger.dev/blob/main/CONTRIBUTING.md) - [x] The PR title follows the convention. - [x] I ran and tested the code works --- ## Testing Ran the webapp locally with the change applied; it compiles and serves. The edit only swaps the chart card title string from "LLM spend" to "LLM spend ($)" on the agent landing page. --- ## Changelog The agent dashboard "LLM spend" chart label now includes the currency unit, reading "LLM spend ($)". --- ## Screenshots _[Screenshots]_ 💯
1 parent e34d524 commit 3fdfe21

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
area: webapp
3+
type: improvement
4+
---
5+
6+
Add a currency unit to the agent dashboard "LLM spend" chart label, so it now reads "LLM spend ($)".

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.agents.$agentParam/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export default function Page() {
293293
)}
294294
</ChartCard>
295295

296-
<ChartCard title="LLM spend">
296+
<ChartCard title="LLM spend ($)">
297297
<Suspense fallback={<ActivityChartSkeleton />}>
298298
<TypedAwait
299299
resolve={llmCostActivity}

0 commit comments

Comments
 (0)