summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/tui/internal/components/chat/message.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/tui/internal/components/chat/message.go b/packages/tui/internal/components/chat/message.go
index 15db37539..65c476e15 100644
--- a/packages/tui/internal/components/chat/message.go
+++ b/packages/tui/internal/components/chat/message.go
@@ -903,7 +903,9 @@ func renderArgs(args *map[string]any, titleKey string) string {
continue
}
if key == "filePath" || key == "path" {
- value = util.Relative(value.(string))
+ if strValue, ok := value.(string); ok {
+ value = util.Relative(strValue)
+ }
}
if key == titleKey {
title = fmt.Sprintf("%s", value)