@continuedev/continuous-ai 1.0.2 → 1.0.3
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 +1 -1
- package/src/lib/formatters.js +1 -1
package/package.json
CHANGED
package/src/lib/formatters.js
CHANGED
|
@@ -20,7 +20,7 @@ export function formatSessionsTable(sessions, summary) {
|
|
|
20
20
|
|
|
21
21
|
// Table rows
|
|
22
22
|
for (const session of sessions) {
|
|
23
|
-
const sessionId = session.
|
|
23
|
+
const sessionId = session.id.substring(0, 8);
|
|
24
24
|
const status = formatStatus(session.status);
|
|
25
25
|
const updated = formatRelativeTime(session.updatedAt);
|
|
26
26
|
|