@alyibrahim/claude-statusline 1.4.5 → 1.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alyibrahim/claude-statusline",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "description": "Rich statusline for Claude Code — model, context bar, real-time token tracking, git branch, rate limits, and session stats. Rust binary, ~5ms startup.",
5
5
  "keywords": [
6
6
  "claude",
@@ -158,7 +158,7 @@ async function handleHistory() {
158
158
  // Inject CSS, JS, and data into the template using the sentinel strings
159
159
  const html = template
160
160
  .replace('/*INJECT_CSS*/', css)
161
- .replace('/*INJECT_DATA*/', sessionsJson)
161
+ .replace('/*INJECT_DATA*/null', sessionsJson)
162
162
  .replace('/*INJECT_JS*/', js);
163
163
 
164
164
  const tempPath = path.join(os.tmpdir(), 'claude-statusline-dashboard.html');