Skip to content

Commit

Permalink
Merge pull request #383 from lhein/setHeadersIcon
Browse files Browse the repository at this point in the history
added new icon for setHeaders EIP coming with Camel 4.3 (fixed #380)
  • Loading branch information
lhein authored Nov 21, 2023
2 parents 0ebac81 + 79926e4 commit e64e843
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Binary file added packages/ui/src/assets/eip/setheaders.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ -36,6 +36,7 @@ import sample from '../assets/eip/sample.png';
import script from '../assets/eip/script.png';
import set_body from '../assets/eip/setbody.png';
import set_header from '../assets/eip/setheader.png';
import set_headers from '../assets/eip/setheaders.png';
import set_property from '../assets/eip/setproperty.png';
import sort from '../assets/eip/sort.png';
import split from '../assets/eip/split.png';
Expand Down Expand Up @@ -672,6 +673,8 @@ function getEIPIcon(elementName?: string): string | undefined {
return set_body;
case 'setHeader':
return set_header;
case 'setHeaders':
return set_headers;
case 'setProperty':
return set_property;
case 'sort':
Expand Down

0 comments on commit e64e843

Please sign in to comment.