Skip to content

Commit 7599f04

Browse files
committed
[ui] Add AWS Lambda icon and registry mapping
1 parent 60bdc41 commit 7599f04

2 files changed

Lines changed: 22 additions & 1 deletion

File tree

js_modules/ui-core/src/graph/OpTags.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import alteryx from './kindtag-images/tool-alteryx-color.svg';
2525
import arrow from './kindtag-images/tool-arrow-color.svg';
2626
import atlan from './kindtag-images/tool-atlan-color.svg';
2727
import aws from './kindtag-images/tool-aws-color.svg';
28+
import awslambda from './kindtag-images/tool-lambda-color.svg'; // added
2829
import ax from './kindtag-images/tool-ax-color.svg';
2930
import axioma from './kindtag-images/tool-axioma-color.svg';
3031
import azure from './kindtag-images/tool-azure-color.svg';
@@ -254,7 +255,9 @@ export type KnownTagType =
254255
| 'arrow'
255256
| 'athena'
256257
| 'atlan'
257-
| 'aws'
258+
| 'aws'
259+
| 'awslambda' // added
260+
| 'lambda' // added
258261
| 'awsstepfunction'
259262
| 'awsstepfunctions'
260263
| 'ax'
@@ -751,6 +754,14 @@ export const KNOWN_TAGS: Record<KnownTagType, KnownTag> = {
751754
icon: aws,
752755
content: 'AWS',
753756
},
757+
awslambda: {
758+
icon: awslambda,
759+
content: 'AWS Lambda',
760+
},
761+
lambda: {
762+
icon: awslambda,
763+
content: 'Lambda',
764+
},
754765
stitch: {
755766
icon: stitch,
756767
content: 'Stitch',
Lines changed: 10 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)