From cac6917b1bd8fc25b8f712bf66dd1717b3c8c7a2 Mon Sep 17 00:00:00 2001 From: Henry Estela Date: Mon, 23 Mar 2026 09:41:55 -0700 Subject: [PATCH] feat(ai-chat): improve error messages during install the actual error messages will show up in settings/apps instead of just failing with an error, it should should errors from docker related commands --- .../inertia/components/InstallActivityFeed.tsx | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/admin/inertia/components/InstallActivityFeed.tsx b/admin/inertia/components/InstallActivityFeed.tsx index b14381f..21da57d 100644 --- a/admin/inertia/components/InstallActivityFeed.tsx +++ b/admin/inertia/components/InstallActivityFeed.tsx @@ -12,16 +12,30 @@ export type InstallActivityFeedProps = { | 'created' | 'preinstall' | 'preinstall-complete' + | 'preinstall-error' | 'starting' | 'started' | 'finalizing' | 'completed' + | 'checking-dependencies' + | 'dependency-installed' + | 'image-exists' + | 'gpu-config' + | 'stopping' + | 'removing' + | 'recreating' + | 'cleanup-warning' + | 'no-volumes' + | 'volume-removed' + | 'volume-cleanup-warning' + | 'error' | 'update-pulling' | 'update-stopping' | 'update-creating' | 'update-starting' | 'update-complete' | 'update-rollback' + | (string & {}) timestamp: string message: string }> @@ -48,7 +62,7 @@ const InstallActivityFeed: React.FC = ({ activity, cla
{activityItem.type === 'completed' || activityItem.type === 'update-complete' ? (