@mblarsen/pi-task-ui 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/index.ts +1 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -285,7 +285,7 @@ function taskLine(
285
285
  case "in_progress": glyph = theme.fg("accent", "◼"); break;
286
286
  case "pending": glyph = theme.fg("dim", "◻"); break;
287
287
  case "failed": glyph = theme.fg("error", "✖"); break;
288
- case "stopped": glyph = theme.fg("dim", "■"); break;
288
+ case "stopped": glyph = "■"; break;
289
289
  }
290
290
  }
291
291
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mblarsen/pi-task-ui",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Backend-neutral task sidebar and agent tools for Pi.",
5
5
  "license": "MIT",
6
6
  "type": "module",