You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ma...@apache.org on 2023/09/29 17:51:31 UTC

[camel-karavan] branch main updated: Missed key added

This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


The following commit(s) were added to refs/heads/main by this push:
     new 4e465145 Missed key added
4e465145 is described below

commit 4e46514585f63b2d85bbbab9fb4a15c8e9bc0f35
Author: Marat Gubaidullin <ma...@talismancloud.io>
AuthorDate: Fri Sep 29 13:51:19 2023 -0400

    Missed key added
---
 karavan-web/karavan-app/src/main/webui/src/main/Main.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/karavan-web/karavan-app/src/main/webui/src/main/Main.tsx b/karavan-web/karavan-app/src/main/webui/src/main/Main.tsx
index 9a8fafb4..a2a8d5c9 100644
--- a/karavan-web/karavan-app/src/main/webui/src/main/Main.tsx
+++ b/karavan-web/karavan-app/src/main/webui/src/main/Main.tsx
@@ -110,6 +110,7 @@ export function Main() {
                         <ProgressStepper aria-label="Readiness progress" isCenterAligned isVertical >
                             {steps.map(step => (
                                 <ProgressStep
+                                    key={step.name}
                                     variant={step.status === 'UP' ? "success" : "info"}
                                     isCurrent={step.status !== 'UP'}
                                     icon={step.status !== 'UP' ? <Spinner isInline aria-label="Loading..."/> : undefined}