@delt/claude-alarm 0.6.7 → 0.6.8
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/dist/cli.js +2 -0
- package/dist/cli.js.map +1 -1
- package/dist/dashboard/index.html +4 -1
- package/dist/hub/server.js +2 -0
- package/dist/hub/server.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/dashboard/index.html +4 -1
package/dist/cli.js
CHANGED
|
@@ -535,6 +535,8 @@ ${sessionList}`);
|
|
|
535
535
|
try {
|
|
536
536
|
const p = JSON.parse(inputPreview);
|
|
537
537
|
if (p.command) preview = `$ ${p.command}`;
|
|
538
|
+
else if (p.title && p.message) preview = `${p.title}
|
|
539
|
+
${p.message}`;
|
|
538
540
|
else if (p.file_path) {
|
|
539
541
|
preview = p.file_path;
|
|
540
542
|
if (p.content) {
|