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

[ui] Add Teradata icon for kind tags #26782

Merged
Merged
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
1 change: 1 addition & 0 deletions docs/content/concepts/metadata-tags/kind-tags.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ Some kinds are given a branded icon in the UI. We currently support nearly 200 u
| `teams` | <Image src="/images/concepts/metadata-tags/kinds/icons/tool-teams-color.svg" width={20} height={20} /> |
| `tecton` | <Image src="/images/concepts/metadata-tags/kinds/icons/tool-tecton-color.svg" width={20} height={20} /> |
| `tensorflow` | <Image src="/images/concepts/metadata-tags/kinds/icons/tool-tensorflow-color.svg" width={20} height={20} /> |
| `teradata` | <Image src="/images/concepts/metadata-tags/kinds/icons/tool-teradata-color.svg" width={20} height={20} /> |
| `thoughtspot` | <Image src="/images/concepts/metadata-tags/kinds/icons/tool-thoughtspot-color.svg" width={20} height={20} /> |
| `trino` | <Image src="/images/concepts/metadata-tags/kinds/icons/tool-trino-color.svg" width={20} height={20} /> |
| `twilio` | <Image src="/images/concepts/metadata-tags/kinds/icons/tool-twilio-color.svg" width={20} height={20} /> |
Expand Down
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 @@ -169,6 +169,7 @@ import tableau from './kindtag-images/tool-tableau-color.svg';
import teams from './kindtag-images/tool-teams-color.svg';
import tecton from './kindtag-images/tool-tecton-color.svg';
import tensorflow from './kindtag-images/tool-tensorflow-color.svg';
import teradata from './kindtag-images/tool-teradata-color.svg';
import thoughtspot from './kindtag-images/tool-thoughtspot-color.svg';
import trino from './kindtag-images/tool-trino-color.svg';
import twilio from './kindtag-images/tool-twilio-color.svg';
Expand Down Expand Up @@ -218,6 +219,7 @@ export type KnownTagType =
| 'spark'
| 'duckdb'
| 'tensorflow'
| 'teradata'
| 'pandas'
| 'semanticmodel'
| 'googlesheets'
Expand Down Expand Up @@ -468,6 +470,10 @@ export const KNOWN_TAGS: Record<KnownTagType, KnownTag> = {
icon: tensorflow,
content: 'TensorFlow',
},
teradata: {
icon: teradata,
content: 'Teradata',
},
pandas: {
icon: pandas,
content: 'pandas',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading