-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2023 Q2 data release
- Loading branch information
Showing
18 changed files
with
157 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,7 +122,6 @@ function PlaceSummary(props) { | |
</div> | ||
)} | ||
</Sticky> | ||
|
||
{renderStats()} | ||
</div> | ||
|
||
|
20 changes: 20 additions & 0 deletions
20
frontend/scripts/react-components/shared/confidence-warning/confidence-warning.component.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react'; | ||
import Text from 'react-components/shared/text'; | ||
import './confidence-warning.scss'; | ||
|
||
const ConfidenceWarning = () => ( | ||
<Text className="warning" color="grey"> | ||
<svg className="icon warning-bell-icon"> | ||
<use xlinkHref="#icon-warning-bell" /> | ||
</svg> | ||
<div className="warning-text"> | ||
<Text weight="bold" className="warning-bold" as="span"> | ||
Note:{' '} | ||
</Text> | ||
This dataset is experimental and we welcome feedback. Please refer to the methods to | ||
understand the modelling work and its limitations. | ||
</div> | ||
</Text> | ||
); | ||
|
||
export default ConfidenceWarning; |
14 changes: 14 additions & 0 deletions
14
frontend/scripts/react-components/shared/confidence-warning/confidence-warning.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.warning { | ||
margin-top: 10px; | ||
display: flex; | ||
align-items: flex-start; | ||
} | ||
|
||
.warning-bell-icon { | ||
overflow: visible; | ||
margin: 2px 5px 0 0; | ||
} | ||
|
||
.warning-text { | ||
display: inline; | ||
} |
1 change: 1 addition & 0 deletions
1
frontend/scripts/react-components/shared/confidence-warning/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from './confidence-warning.component'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.