Skip to content
Open
Show file tree
Hide file tree
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: 2 additions & 1 deletion docs/docs/partials/_KindsTags.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@
| `x` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-x-color.svg" width={20} height={20} /> |
| `xgboost` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-xgboost-color.svg" width={20} height={20} /> |
| `youtube` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-youtube-color.svg" width={20} height={20} /> |
| `zendesk` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-zendesk-color.svg" width={20} height={20} /> |
| `bronze` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/medallion-bronze-color.svg" width={20} height={20} /> |
| `silver` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/medallion-silver-color.svg" width={20} height={20} /> |
| `gold` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/medallion-gold-color.svg" width={20} height={20} /> |
Expand All @@ -223,4 +224,4 @@
| `workbook` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/dashboard.svg" width={20} height={20} /> |
| `csv` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/csv.svg" width={20} height={20} /> |
| `pdf` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/pdf.svg" width={20} height={20} /> |
| `yaml` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/yaml.svg" width={20} height={20} /> |
| `yaml` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/yaml.svg" width={20} height={20} /> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions js_modules/dagster-ui/packages/ui-core/src/graph/OpTags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ import wechat from './kindtag-images/tool-wechat-color.svg';
import x from './kindtag-images/tool-x-color.svg';
import xgboost from './kindtag-images/tool-xgboost-color.svg';
import youtube from './kindtag-images/tool-youtube-color.svg';
import zendesk from './kindtag-images/tool-zendesk-color.svg';
import view from './kindtag-images/view.svg';
import yaml from './kindtag-images/yaml.svg';

Expand Down Expand Up @@ -412,6 +413,7 @@ export type KnownTagType =
| 'wechat'
| 'x'
| 'youtube'
| 'zendesk'
| 'typescript'
| 'javascript'
| 'scala'
Expand Down Expand Up @@ -1166,6 +1168,10 @@ export const KNOWN_TAGS: Record<KnownTagType, KnownTag> = {
icon: youtube,
content: 'YouTube',
},
zendesk: {
icon: zendesk,
content: 'Zendesk',
},
typescript: {
icon: typescript,
content: 'TypeScript',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.