Skip to content

Commit 64e6a5a

Browse files
committed
fix: change date placeholder
1 parent 58ab957 commit 64e6a5a

File tree

2 files changed

+3
-1
lines changed
  • src/shared/components/Settings

2 files changed

+3
-1
lines changed

src/shared/components/Settings/FormInputDatePicker/styles.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
font-size: 14px;
3434
line-height: 22px;
3535
color: $color-black-60;
36+
text-transform: capitalize !important;
3637
}
3738
}
3839
}
@@ -58,6 +59,7 @@
5859
.DateInput {
5960
.DateInput_input {
6061
font-size: 14px;
62+
text-transform: capitalize;
6163
}
6264
}
6365
}

src/shared/components/Settings/ProfileSettings/PersonalDetails/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const PersonalDetails = (props) => {
8484
<FormInputDatePicker
8585
readOnly
8686
displayFormat="MM/DD/YYYY"
87-
placeholder="MM/DD/YYYY"
87+
placeholder="Select Birth Date"
8888
isOutsideRange={function dayAfterToday(date) { return moment(date).add(-1, 'days').isAfter(); }}
8989
value={newBasicInfo.birthDate}
9090
id="date-range-picker1"

0 commit comments

Comments
 (0)