Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/ItemSelectInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const USER_GROUPS = gql`
query UserGroupOptions($search: String, $offset: Int!, $limit: Int!) {
contributorUserGroups(
filters: {
name: $search
name: {iContains: $search}
}
pagination: {
limit: $limit,
Expand Down
18 changes: 9 additions & 9 deletions app/views/StatsBoard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ function StatsBoard(props: Props) {
Area Swipes
</div>
)}
subHeading="Find"
subHeading="Find features"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's make this consistent with other subheadings, Find features should be Find Features (capital F)

variant="stat"
/>
<InformationCard
Expand All @@ -689,7 +689,7 @@ function StatsBoard(props: Props) {
Features Checked
</div>
)}
subHeading="Validate"
subHeading="Validate Footprints"
variant="stat"
/>
<InformationCard
Expand Down Expand Up @@ -721,7 +721,7 @@ function StatsBoard(props: Props) {
Scene Compared
</div>
)}
subHeading="Compare"
subHeading="Compare Dates"
variant="stat"
/>
<InformationCard
Expand Down Expand Up @@ -750,10 +750,10 @@ function StatsBoard(props: Props) {
)}
label={(
<div className={styles.infoLabel}>
Completeness
Completeness Checked
</div>
)}
subHeading="Completeness"
subHeading="Check Completeness"
variant="stat"
/>
<InformationCard
Expand Down Expand Up @@ -782,10 +782,10 @@ function StatsBoard(props: Props) {
)}
label={(
<div className={styles.infoLabel}>
Streets Covered
Streets Viewed

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be Street Viewed

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure??

</div>
)}
subHeading="Street"
subHeading="View Streets"
variant="stat"
/>
<InformationCard
Expand All @@ -806,10 +806,10 @@ function StatsBoard(props: Props) {
)}
label={(
<div className={styles.infoLabel}>
Images Validated
Images Assessed
</div>
)}
subHeading="Validate Image"
subHeading="Assess Images"
variant="stat"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/UserDashboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const USER_STATS = gql`
}
contributorUserGroups(
pagination: {limit: $limit, offset: $offset}
filters: {userFirebaseId: $pk}
filters: {firebaseId: $pk}
) {
results {
id
Expand Down
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 108 files