Skip to content

Commit

Permalink
[ui] update modified to changed in ui (#20786)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria authored Mar 29, 2024
1 parent b1ef70d commit 41e03b8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const ChangedReasonsTag = ({
<BaseTag
fillColor={Colors.backgroundCyan()}
textColor={Colors.textCyan()}
label={changedReasons.includes(ChangeReason.NEW) ? 'New in branch' : 'Modified in branch'}
label={changedReasons.includes(ChangeReason.NEW) ? 'New in branch' : 'Changed in branch'}
icon={<Icon name="new_in_branch" color={Colors.accentCyan()} />}
/>
</ChangedReasonsPopover>
Expand All @@ -57,11 +57,11 @@ export const ChangedReasonsPopover = ({
case ChangeReason.NEW:
return '';
case ChangeReason.CODE_VERSION:
return 'has a modified code version';
return 'has a changed code version';
case ChangeReason.INPUTS:
return 'has modified dependencies';
return 'has changed dependencies';
case ChangeReason.PARTITIONS_DEFINITION:
return 'has a modified partition definition';
return 'has a changed partition definition';
}
}
return (
Expand Down

1 comment on commit 41e03b8

@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-e6675cvaj-elementl.vercel.app

Built with commit 41e03b8.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.