Skip to content

Commit

Permalink
[ui] Add Teradata icon for kind tags (#26782)
Browse files Browse the repository at this point in the history
## Summary & Motivation

Add Teradata Icon (SVG, 20x20) for Asset Kinds.

As part of ingesting data sources for dbt, I frequently pull tables from
Teradara into data lake. Having fancy Teradata icon would improve
clarity and enhance the UI experience.

## How I Tested These Changes

Launched the documentation website locally and verified that the kind
was visible in the Supported Icons section (as in the screenshot below).

![image](https://github.com/user-attachments/assets/9179b12a-2cd0-4cc2-8e38-6e6233f8bddc)


## Changelog

> [ui] Add Teradata icon for kind tags
  • Loading branch information
roslovets authored Jan 6, 2025
1 parent 1dc54ca commit 4bd825c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
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.

2 comments on commit 4bd825c

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagster-docs ready!

✅ Preview
https://dagster-docs-d4zn9mz0a-elementl.vercel.app
https://master.dagster.dagster-docs.io

Built with commit 4bd825c.
This pull request is being automatically deployed with vercel-action

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagit-core-storybook ready!

✅ Preview
https://dagit-core-storybook-jt1tdv2n7-elementl.vercel.app

Built with commit 4bd825c.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.