Skip to content

Commit

Permalink
fix(validate): adapt default options for consistency with mobile app
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Oct 1, 2024
1 parent 1dd9cd3 commit 87b07bd
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions src/components/ValidateProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,35 +34,27 @@ export default defineComponent({
default() {
return [
{
mdiIcon: 'mdi-check',
description: 'The shape correctly outlines a building.',
iconColor: 'green',
mdiIcon: 'mdi-check-bold',
description: `The shape does outline a building in the image`,
iconColor: '#bbcb7d',
shortkey: 1,
title: 'Yes',
value: 1,
},
{
mdiIcon: 'mdi-cancel',
description: "The shape doesn't correctly outline a building in the image.",
iconColor: 'red',
mdiIcon: 'mdi-close-thick',
description: `The shape doesn't match a building in the image`,
iconColor: '#fd5054',
shortkey: 2,
title: 'No',
value: 0,
},
{
mdiIcon: 'mdi-flag-outline',
description: 'Building outline correct, but not aligned with imagery.',
iconColor: 'orange',
shortkey: 3,
title: 'Offset',
value: 3,
},
{
mdiIcon: 'mdi-minus',
description: 'I am not sure.',
iconColor: 'gray',
mdiIcon: 'mdi-minus-thick',
description: `If you're not sure or there is cloud cover / bad imagery.`,
iconColor: '#adadad',
title: 'Not sure',
shortkey: 4,
shortkey: 3,
value: 2,
},
]
Expand Down

0 comments on commit 87b07bd

Please sign in to comment.