From 47f7b612304fbcee26cb6a8057b42f46e8c96fc9 Mon Sep 17 00:00:00 2001 From: Vadim Date: Mon, 10 Jul 2023 16:15:57 +0200 Subject: [PATCH] Updated `issuesReportUrl` to lead to _/new/choose_ --- lib/environment.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/environment.dart b/lib/environment.dart index c2e43c7..69ba143 100644 --- a/lib/environment.dart +++ b/lib/environment.dart @@ -19,14 +19,14 @@ class Environment { const Environment.dev() : buildType = BuildType.dev, sourceCodeUrl = 'https://github.com/vodemn/m3_lightmeter', - issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues', + issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues/new/choose', contactEmail = 'contact.vodemn@gmail.com', hasLightSensor = false; const Environment.prod() : buildType = BuildType.prod, sourceCodeUrl = 'https://github.com/vodemn/m3_lightmeter', - issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues', + issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues/new/choose', contactEmail = 'contact.vodemn@gmail.com', hasLightSensor = false;