From 2558995011cc40a70f538d66b1bcc0381562941b Mon Sep 17 00:00:00 2001 From: Rafael Araujo Lehmkuhl Date: Thu, 12 Sep 2024 19:37:51 -0300 Subject: [PATCH] map: Inform user that the mission should be started in the map widget --- src/views/MissionPlanningView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/MissionPlanningView.vue b/src/views/MissionPlanningView.vue index bcea4ff44..300251898 100644 --- a/src/views/MissionPlanningView.vue +++ b/src/views/MissionPlanningView.vue @@ -159,7 +159,8 @@ const uploadMissionToVehicle = async (): Promise => { } try { await vehicleStore.uploadMission(missionStore.currentPlanningWaypoints, loadingCallback) - showDialog({ variant: 'success', message: 'Mission upload succeed!', timer: 2000 }) + const message = `Mission upload succeed! Open the Map widget in Flight Mode and click the "play" button to start the mission.` + showDialog({ variant: 'success', message, timer: 6000 }) } catch (error) { showDialog({ variant: 'error', title: 'Mission upload failed', message: error as string, timer: 5000 }) } finally {