Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
adjust text color and fix a small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
erinz2020 committed Jan 4, 2024
1 parent 146a436 commit 3364864
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/dataPage/DataPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,12 @@ export default function DataPage() {
onChange={e => {
setSelected(e.target.value);
}}
style={{
color: theme.palette.common.white,
fontSize: 16,
fontWeight: 500,
paddingLeft: 10,
}}
>
<MenuItem value="all_data">
<FormattedMessage id="MY_SIGHTINGS" />
Expand Down Expand Up @@ -325,7 +331,7 @@ export default function DataPage() {
<Text>
{intl.formatMessage(
{ id: 'TotalAccount' },
{ totalAccount: resultCountSightings },
{ totalAccount: resultCountSightings || 0 },
)}
</Text>
</div>
Expand Down

0 comments on commit 3364864

Please sign in to comment.