Skip to content

Commit cd21b27

Browse files
authored
Merge pull request #47 from tinybirdco/fixes03
Fixes03
2 parents 71ae0ba + bebb485 commit cd21b27

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Types of changes:
1919
curl https://tinybird.co | sh
2020
tb login
2121
tb --cloud deploy --template https://github.com/tinybirdco/llm-performance-tracker/tree/main/tinybird
22-
TOKEN=$(tb auth info | grep "^token: " | awk '{print $2}')
22+
tb token copy read_pipes && TINYBIRD_TOKEN=$(pbpaste)
2323
open https://llm-tracker.tinybird.live\?token\=$TOKEN
2424
```
2525

TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ open https://llm-tracker.tinybird.live\?token\=$TINYBIRD_TOKEN
6262

6363
## Build and deploy your own LLM tracker
6464

65-
See [README.md](https://github.com/tinybirdco/llm-performance-tracker)
65+
See [README.md](https://github.com/tinybirdco/llm-performance-tracker?tab=readme-ov-file#build-and-deploy-your-own-llm-tracker)

dashboard/ai-analytics/src/app/components/DataTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ export default function DataTable({
548548
</button>
549549
</div>
550550

551-
<div className="space-y-2 max-h-[400px] overflow-y-auto">
551+
<div className="space-y-2 max-h-[400px] overflow-y-auto pr-4">
552552
{columns.map(column => (
553553
<div key={column.id} className="flex items-center justify-between py-2">
554554
<span className="text-[#F4F4F4]">{column.label}</span>

dashboard/ai-analytics/src/app/components/SparkChart.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ import { useState } from 'react';
103103
showAnimation={false}
104104
curveType="monotone"
105105
stack={isStacked}
106+
yAxisWidth={60}
106107
customTooltip={(props) => (
107108
<div style={{
108109
position: 'fixed',

dashboard/ai-analytics/src/app/components/TimeseriesChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export default function TimeseriesChart({ data, filters, onFiltersChange, isLoad
291291
colors={tab.colors}
292292
stack={true}
293293
showLegend={false}
294-
yAxisWidth={45}
294+
yAxisWidth={60}
295295
valueFormatter={costValueFormatter}
296296
className="h-[calc(100%-24px)] mt-10 hidden md:block"
297297
showTooltip={true}

dashboard/ai-analytics/src/components/ui/floating-notification.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export function FloatingNotification({
9494

9595
return (
9696
<>
97-
<div className="fixed flex" style={{ left: `${position.x}px`, top: `${position.y}px` }}>
97+
<div className="fixed flex" style={{ left: `${position.x}px`, top: `${position.y}px`, zIndex: 50 }}>
9898
<div
9999
ref={containerRef}
100100
className={cn(

0 commit comments

Comments
 (0)