@raidou/pi-notify 0.5.0 → 0.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raidou/pi-notify",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Desktop notification extension for the pi coding agent.",
5
5
  "keywords": [
6
6
  "pi",
@@ -47,7 +47,7 @@ const COLUMNS: Column[] = [
47
47
  width: 10,
48
48
  render: (session, theme, width) => {
49
49
  const startedRunningAt = session.startedRunningAt
50
- if (!startedRunningAt) return ''
50
+ if (!startedRunningAt) return ''.padEnd(width)
51
51
  const duration = Date.now() - startedRunningAt
52
52
  return theme.fg('dim', formatDuration(duration).padEnd(width))
53
53
  },