From 87b07bdc12e52f491f2d8c6b02a305a9a00e73f9 Mon Sep 17 00:00:00 2001 From: Oliver Fritz Date: Tue, 1 Oct 2024 14:19:03 +0200 Subject: [PATCH] fix(validate): adapt default options for consistency with mobile app --- src/components/ValidateProject.vue | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/src/components/ValidateProject.vue b/src/components/ValidateProject.vue index 8698838..409aea6 100644 --- a/src/components/ValidateProject.vue +++ b/src/components/ValidateProject.vue @@ -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, }, ]