Skip to content

Commit

Permalink
let tag inherit pointer style (#8208)
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm committed Jun 6, 2022
1 parent 585eeaf commit d2e058a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js_modules/dagit/packages/ui/src/components/BaseTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const StyledTag = styled.div<StyledTagProps>`
background-color: ${({$fillColor}) => $fillColor};
border-radius: 8px;
color: ${({$textColor}) => $textColor};
cursor: ${({$interactive}) => ($interactive ? 'pointer' : 'default')};
cursor: ${({$interactive}) => ($interactive ? 'pointer' : 'inherit')};
display: inline-flex;
flex-direction: row;
font-size: 12px;
Expand Down

1 comment on commit d2e058a

@vercel
Copy link

@vercel vercel bot commented on d2e058a Jun 6, 2022

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

dagit-storybook – ./js_modules/dagit/packages/ui

dagit-storybook-git-master-elementl.vercel.app
dagit-storybook.vercel.app
dagit-storybook-elementl.vercel.app

Please sign in to comment.