Skip to content

Commit

Permalink
[Track-281] update high priority labels to 'high profile' (#2447)
Browse files Browse the repository at this point in the history
  • Loading branch information
tolkamps1 authored Nov 22, 2024
1 parent 7c9e3b5 commit 3e7b941
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ export default function AnticipatedEAOSchedule() {
return (
<TableRow key={issueIndex}>
<TableCell>
High Priority Issue
High Profile Issue
</TableCell>
<TableCell>
<b>{issue.title}</b>:
Expand Down
4 changes: 2 additions & 2 deletions epictrack-web/src/components/work/WorkForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -550,10 +550,10 @@ export default function WorkForm({
name="is_high_priority"
disabled={!canEdit || isSpecialFieldUnlocked}
/>
<ETFormLabel id="is_watched">High Priority</ETFormLabel>
<ETFormLabel id="is_watched">High Profile</ETFormLabel>
<Tooltip
sx={{ paddingLeft: "2px" }}
title="Work marked High Priority will have extra milestones appear on Reports"
title="Work marked High Profile will have extra milestones appear on Reports"
>
<Box component={"span"}>
<InfoIcon />
Expand Down
4 changes: 2 additions & 2 deletions epictrack-web/src/components/workPlan/event/EventForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -686,9 +686,9 @@ const EventForm = ({
name="high_priority"
/>
}
label="High Priority"
label="High Profile"
/>
<Tooltip title="High Priority Milestones will appear on reports">
<Tooltip title="High Profile Milestones will appear on reports">
<Box component={"span"}>
<InfoIcon />
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ const CreateIssue = () => {
control={<ControlledSwitch name="is_high_priority" />}
label={
<Stack direction="row" spacing={1}>
<ETParagraph>High Priority</ETParagraph>
<Tooltip title="Issue must be High Priority to appear on 30-60-90">
<ETParagraph>High Profile</ETParagraph>
<Tooltip title="Issue must be High Profile to appear on 30-60-90">
<Box component={"span"}>
<InfoIcon />
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ const EditIssue = () => {
control={<ControlledSwitch name="is_high_priority" />}
label={
<Stack direction="row" spacing={1}>
<ETParagraph>High Priority</ETParagraph>
<Tooltip title="Issue must be High Priority to appear on 30-60-90">
<ETParagraph>High Profile</ETParagraph>
<Tooltip title="Issue must be High Profile to appear on 30-60-90">
<Box component={"span"}>
<InfoIcon />
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const IssueSummary = ({ issue }: { issue: WorkIssue }) => {
<Stack spacing={2} direction={"row"}>
<ETParagraph data-cy="issue-title">{issue.title}</ETParagraph>
<When condition={issue.is_high_priority}>
<ETChip highPriority label="High Priority" />
<ETChip highPriority label="High Profile" />
</When>
<If condition={issue.is_active}>
<Then>
Expand Down

0 comments on commit 3e7b941

Please sign in to comment.