Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added icon handling for poll eips (coming with 4.8 of Camel) #1315

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/ui/src/utils/node-icon-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import otherwise from '../assets/eip/otherwise.png';
import throwException from '../assets/eip/throw-exception.png';
import pausable from '../assets/eip/pausable.png';
import pipeline from '../assets/eip/pipeline.png';
import poll from '../assets/eip/poll-enrich.png';
import poll_enrich from '../assets/eip/poll-enrich.png';
import process from '../assets/eip/process.png';
import recipient_list from '../assets/eip/recipient-list.png';
Expand Down Expand Up @@ -672,6 +673,8 @@ export class NodeIconResolver {
return pausable;
case 'pipeline':
return pipeline;
case 'poll':
return poll;
case 'pollEnrich':
return poll_enrich;
case 'process':
Expand Down
Loading