Skip to content

Commit 3243f80

Browse files
APPTRACK-1772,1773,1775 Text changes
1 parent 9ee9364 commit 3243f80

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

src/containers/Application/TriageWidget/TriageWidget.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,7 @@
3939
.TriageWidgetSteps .ant-steps-dot.ant-steps-small .ant-steps-item-tail {
4040
margin-left: 55px;
4141
}
42+
43+
.Notice {
44+
font-size: 12px;
45+
}

src/containers/Application/TriageWidget/TriageWidget.js

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@ import InfoCard from '../../../components/UI/InfoCard/InfoCard';
22
import InfoCardRow from '../../../components/UI/InfoCard/InfoCardRow/InfoCardRow';
33
import LabelValuePair from '../../../components/UI/LabelValuePair/LabelValuePair';
44
import './TriageWidget.css';
5-
import { Radio, Input, Button } from 'antd';
5+
import { Radio, Input, Button, Typography } from 'antd';
6+
import { WarningOutlined } from '@ant-design/icons';
7+
68
const { TextArea } = Input;
9+
const { Text } = Typography;
710

8-
const triageWidget = (props) => (
9-
<div style={props.style}>
11+
const triageWidget = (props) => {
12+
const isHRSpecialist = true;
13+
return (<div style={props.style}>
1014
<InfoCard
1115
title={props.title}
1216
className='TriageWidgetContainer'
@@ -55,6 +59,12 @@ const triageWidget = (props) => (
5559
/>
5660
)}
5761
</InfoCardRow>
62+
{isHRSpecialist ? (
63+
<InfoCardRow
64+
style={{ display: 'flex', justifyContent: 'space-between' }}
65+
>
66+
<div className='Notice'> <WarningOutlined /> Please email the Vacancy Manager and/or Executive Secretary informing them that HR Specialist triage is complete. </div>
67+
</InfoCardRow>) : null}
5868
{!props.readOnly ? (
5969
<InfoCardRow
6070
style={{ display: 'flex', justifyContent: 'space-between' }}
@@ -66,7 +76,7 @@ const triageWidget = (props) => (
6676
</InfoCardRow>
6777
) : null}
6878
</InfoCard>
69-
</div>
70-
);
79+
</div>)
80+
};
7181

7282
export default triageWidget;

src/containers/CreateVacancy/Forms/BasicInfo/BasicInfo.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ const basicInformation = (props) => {
177177
{ label: 'N/A', value: 'N/A' },
178178
];
179179

180+
const hrSpecialistTooltip = 'Checking this box allows HR Specialist(s) assigned to this vacancy to perform vacancy manager triage.';
181+
180182
useEffect(() => {
181183
setIsLoading(true);
182184
(async () => {
@@ -300,7 +302,7 @@ const basicInformation = (props) => {
300302
<Checkbox>Utilizing a Set Close Date</Checkbox>
301303
</Form.Item>
302304
</Tooltip>
303-
<Tooltip title='Checking this box allows HR Specialist(s) assigned to this vacancy to perform vacancy manager triage'>
305+
<Tooltip title={user.isManager ? `${hrSpecialistTooltip} Please email the HR Specialist informing them to complete the vacancy triage.`: hrSpecialistTooltip}>
304306
<Form.Item
305307
name='allowHrSpecialistTriage'
306308
valuePropName='checked'

src/containers/Home/Home.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const home = () => {
9999
pagination={{ hideOnSinglePage: true }}
100100
locale={{
101101
emptyText:
102-
'There are currently no open vacancies. Please check back later.',
102+
'There are currently no open vacancies.',
103103
}}
104104
loading={isLoading}
105105
/>

0 commit comments

Comments
 (0)