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/12/08 15:49:14 UTC

(camel-karavan) branch main updated: Projects table for ephemeral

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 72d14f74 Projects table for ephemeral
72d14f74 is described below

commit 72d14f748bc1258b871ebca9c0a52756da7e6f3a
Author: Marat Gubaidullin <ma...@talismancloud.io>
AuthorDate: Fri Dec 8 10:49:06 2023 -0500

    Projects table for ephemeral
---
 karavan-web/karavan-app/src/main/webui/src/projects/ProjectsPage.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/karavan-web/karavan-app/src/main/webui/src/projects/ProjectsPage.tsx b/karavan-web/karavan-app/src/main/webui/src/projects/ProjectsPage.tsx
index 63d980f5..ec9eb25c 100644
--- a/karavan-web/karavan-app/src/main/webui/src/projects/ProjectsPage.tsx
+++ b/karavan-web/karavan-app/src/main/webui/src/projects/ProjectsPage.tsx
@@ -114,7 +114,7 @@ export function ProjectsPage () {
 
     function getProjectsTable() {
         const projs = projects
-            .filter(p => p.type === ProjectType.normal)
+            .filter(p => p.type === ProjectType.normal || p.type === ProjectType.ephemeral)
             .filter(p => p.name.toLowerCase().includes(filter) || p.description.toLowerCase().includes(filter));
         return (
             <Table aria-label="Projects" variant={"compact"}>