You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/webview/chart/main.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ function renderLayout(data: InitialChartData): void {
92
92
constheader=el('div','header');
93
93
constheaderLeft=el('div','header-left');
94
94
consticon=el('span','header-icon','📈');
95
-
consttitle=el('span','header-title','Token Usage Over Time');
95
+
consttitle=el('span','header-title','Token Usage - Last 30 Days');
96
96
headerLeft.append(icon,title);
97
97
constbuttons=el('div','button-row');
98
98
buttons.append(
@@ -140,7 +140,7 @@ function renderLayout(data: InitialChartData): void {
140
140
chartShell.append(toggles,canvasWrap);
141
141
chartSection.append(chartShell);
142
142
143
-
constfooter=el('div','footer',`Day-by-day token usage for the current month\nLast updated: ${newDate(data.lastUpdated).toLocaleString()}\nUpdates automatically every 5 minutes.`);
143
+
constfooter=el('div','footer',`Day-by-day token usage for the last 30 days\nLast updated: ${newDate(data.lastUpdated).toLocaleString()}\nUpdates automatically every 5 minutes.`);
0 commit comments